Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Autoscaling.getAutoScalingConfigurations
Explore with Pulumi AI
This data source provides the list of Auto Scaling Configurations in Oracle Cloud Infrastructure Auto Scaling service.
Lists autoscaling configurations in the specifed compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutoScalingConfigurations = oci.Autoscaling.getAutoScalingConfigurations({
    compartmentId: compartmentId,
    displayName: autoScalingConfigurationDisplayName,
});
import pulumi
import pulumi_oci as oci
test_auto_scaling_configurations = oci.Autoscaling.get_auto_scaling_configurations(compartment_id=compartment_id,
    display_name=auto_scaling_configuration_display_name)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/autoscaling"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := autoscaling.GetAutoScalingConfigurations(ctx, &autoscaling.GetAutoScalingConfigurationsArgs{
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(autoScalingConfigurationDisplayName),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testAutoScalingConfigurations = Oci.Autoscaling.GetAutoScalingConfigurations.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = autoScalingConfigurationDisplayName,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Autoscaling.AutoscalingFunctions;
import com.pulumi.oci.Autoscaling.inputs.GetAutoScalingConfigurationsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testAutoScalingConfigurations = AutoscalingFunctions.getAutoScalingConfigurations(GetAutoScalingConfigurationsArgs.builder()
            .compartmentId(compartmentId)
            .displayName(autoScalingConfigurationDisplayName)
            .build());
    }
}
variables:
  testAutoScalingConfigurations:
    fn::invoke:
      function: oci:Autoscaling:getAutoScalingConfigurations
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${autoScalingConfigurationDisplayName}
Using getAutoScalingConfigurations
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAutoScalingConfigurations(args: GetAutoScalingConfigurationsArgs, opts?: InvokeOptions): Promise<GetAutoScalingConfigurationsResult>
function getAutoScalingConfigurationsOutput(args: GetAutoScalingConfigurationsOutputArgs, opts?: InvokeOptions): Output<GetAutoScalingConfigurationsResult>def get_auto_scaling_configurations(compartment_id: Optional[str] = None,
                                    display_name: Optional[str] = None,
                                    filters: Optional[Sequence[GetAutoScalingConfigurationsFilter]] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetAutoScalingConfigurationsResult
def get_auto_scaling_configurations_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                    display_name: Optional[pulumi.Input[str]] = None,
                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAutoScalingConfigurationsFilterArgs]]]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetAutoScalingConfigurationsResult]func GetAutoScalingConfigurations(ctx *Context, args *GetAutoScalingConfigurationsArgs, opts ...InvokeOption) (*GetAutoScalingConfigurationsResult, error)
func GetAutoScalingConfigurationsOutput(ctx *Context, args *GetAutoScalingConfigurationsOutputArgs, opts ...InvokeOption) GetAutoScalingConfigurationsResultOutput> Note: This function is named GetAutoScalingConfigurations in the Go SDK.
public static class GetAutoScalingConfigurations 
{
    public static Task<GetAutoScalingConfigurationsResult> InvokeAsync(GetAutoScalingConfigurationsArgs args, InvokeOptions? opts = null)
    public static Output<GetAutoScalingConfigurationsResult> Invoke(GetAutoScalingConfigurationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAutoScalingConfigurationsResult> getAutoScalingConfigurations(GetAutoScalingConfigurationsArgs args, InvokeOptions options)
public static Output<GetAutoScalingConfigurationsResult> getAutoScalingConfigurations(GetAutoScalingConfigurationsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Autoscaling/getAutoScalingConfigurations:getAutoScalingConfigurations
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Filters
List<GetAuto Scaling Configurations Filter> 
- CompartmentId string
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Filters
[]GetAuto Scaling Configurations Filter 
- compartmentId String
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- displayName String
- A filter to return only resources that match the given display name exactly.
- filters
List<GetAuto Scaling Configurations Filter> 
- compartmentId string
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- displayName string
- A filter to return only resources that match the given display name exactly.
- filters
GetAuto Scaling Configurations Filter[] 
- compartment_id str
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- display_name str
- A filter to return only resources that match the given display name exactly.
- filters
Sequence[GetAuto Scaling Configurations Filter] 
- compartmentId String
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- displayName String
- A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
getAutoScalingConfigurations Result
The following output properties are available:
- AutoScaling List<GetConfigurations Auto Scaling Configurations Auto Scaling Configuration> 
- The list of auto_scaling_configurations.
- CompartmentId string
- The OCID of the compartment containing the autoscaling configuration.
- Id string
- The provider-assigned unique ID for this managed resource.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<GetAuto Scaling Configurations Filter> 
- AutoScaling []GetConfigurations Auto Scaling Configurations Auto Scaling Configuration 
- The list of auto_scaling_configurations.
- CompartmentId string
- The OCID of the compartment containing the autoscaling configuration.
- Id string
- The provider-assigned unique ID for this managed resource.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]GetAuto Scaling Configurations Filter 
- autoScaling List<GetConfigurations Auto Scaling Configurations Auto Scaling Configuration> 
- The list of auto_scaling_configurations.
- compartmentId String
- The OCID of the compartment containing the autoscaling configuration.
- id String
- The provider-assigned unique ID for this managed resource.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<GetAuto Scaling Configurations Filter> 
- autoScaling GetConfigurations Auto Scaling Configurations Auto Scaling Configuration[] 
- The list of auto_scaling_configurations.
- compartmentId string
- The OCID of the compartment containing the autoscaling configuration.
- id string
- The provider-assigned unique ID for this managed resource.
- displayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
GetAuto Scaling Configurations Filter[] 
- auto_scaling_ Sequence[Getconfigurations Auto Scaling Configurations Auto Scaling Configuration] 
- The list of auto_scaling_configurations.
- compartment_id str
- The OCID of the compartment containing the autoscaling configuration.
- id str
- The provider-assigned unique ID for this managed resource.
- display_name str
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[GetAuto Scaling Configurations Filter] 
- autoScaling List<Property Map>Configurations 
- The list of auto_scaling_configurations.
- compartmentId String
- The OCID of the compartment containing the autoscaling configuration.
- id String
- The provider-assigned unique ID for this managed resource.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
Supporting Types
GetAutoScalingConfigurationsAutoScalingConfiguration      
- AutoScaling List<GetResources Auto Scaling Configurations Auto Scaling Configuration Auto Scaling Resource> 
- A resource that is managed by an autoscaling configuration. The only supported type is "instancePool."
- CompartmentId string
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- CoolDown intIn Seconds 
- For threshold-based autoscaling policies, this value is the minimum period of time to wait between scaling actions. The cooldown period gives the system time to stabilize before rescaling. The minimum value is 300 seconds, which is also the default. The cooldown period starts when the instance pool reaches the running state.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- ID of the condition that is assigned after creation.
- IsEnabled bool
- Whether the autoscaling policy is enabled.
- MaxResource intCount 
- The maximum number of resources to scale out to.
- MinResource intCount 
- The minimum number of resources to scale in to.
- Policies
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy> 
- Autoscaling policy definitions for the autoscaling configuration. An autoscaling policy defines the criteria that trigger autoscaling actions and the actions to take.
- TimeCreated string
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- AutoScaling []GetResources Auto Scaling Configurations Auto Scaling Configuration Auto Scaling Resource 
- A resource that is managed by an autoscaling configuration. The only supported type is "instancePool."
- CompartmentId string
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- CoolDown intIn Seconds 
- For threshold-based autoscaling policies, this value is the minimum period of time to wait between scaling actions. The cooldown period gives the system time to stabilize before rescaling. The minimum value is 300 seconds, which is also the default. The cooldown period starts when the instance pool reaches the running state.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- ID of the condition that is assigned after creation.
- IsEnabled bool
- Whether the autoscaling policy is enabled.
- MaxResource intCount 
- The maximum number of resources to scale out to.
- MinResource intCount 
- The minimum number of resources to scale in to.
- Policies
[]GetAuto Scaling Configurations Auto Scaling Configuration Policy 
- Autoscaling policy definitions for the autoscaling configuration. An autoscaling policy defines the criteria that trigger autoscaling actions and the actions to take.
- TimeCreated string
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- autoScaling List<GetResources Auto Scaling Configurations Auto Scaling Configuration Auto Scaling Resource> 
- A resource that is managed by an autoscaling configuration. The only supported type is "instancePool."
- compartmentId String
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- coolDown IntegerIn Seconds 
- For threshold-based autoscaling policies, this value is the minimum period of time to wait between scaling actions. The cooldown period gives the system time to stabilize before rescaling. The minimum value is 300 seconds, which is also the default. The cooldown period starts when the instance pool reaches the running state.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only resources that match the given display name exactly.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- ID of the condition that is assigned after creation.
- isEnabled Boolean
- Whether the autoscaling policy is enabled.
- maxResource IntegerCount 
- The maximum number of resources to scale out to.
- minResource IntegerCount 
- The minimum number of resources to scale in to.
- policies
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy> 
- Autoscaling policy definitions for the autoscaling configuration. An autoscaling policy defines the criteria that trigger autoscaling actions and the actions to take.
- timeCreated String
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- autoScaling GetResources Auto Scaling Configurations Auto Scaling Configuration Auto Scaling Resource[] 
- A resource that is managed by an autoscaling configuration. The only supported type is "instancePool."
- compartmentId string
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- coolDown numberIn Seconds 
- For threshold-based autoscaling policies, this value is the minimum period of time to wait between scaling actions. The cooldown period gives the system time to stabilize before rescaling. The minimum value is 300 seconds, which is also the default. The cooldown period starts when the instance pool reaches the running state.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- A filter to return only resources that match the given display name exactly.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id string
- ID of the condition that is assigned after creation.
- isEnabled boolean
- Whether the autoscaling policy is enabled.
- maxResource numberCount 
- The maximum number of resources to scale out to.
- minResource numberCount 
- The minimum number of resources to scale in to.
- policies
GetAuto Scaling Configurations Auto Scaling Configuration Policy[] 
- Autoscaling policy definitions for the autoscaling configuration. An autoscaling policy defines the criteria that trigger autoscaling actions and the actions to take.
- timeCreated string
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- auto_scaling_ Sequence[Getresources Auto Scaling Configurations Auto Scaling Configuration Auto Scaling Resource] 
- A resource that is managed by an autoscaling configuration. The only supported type is "instancePool."
- compartment_id str
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- cool_down_ intin_ seconds 
- For threshold-based autoscaling policies, this value is the minimum period of time to wait between scaling actions. The cooldown period gives the system time to stabilize before rescaling. The minimum value is 300 seconds, which is also the default. The cooldown period starts when the instance pool reaches the running state.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- A filter to return only resources that match the given display name exactly.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id str
- ID of the condition that is assigned after creation.
- is_enabled bool
- Whether the autoscaling policy is enabled.
- max_resource_ intcount 
- The maximum number of resources to scale out to.
- min_resource_ intcount 
- The minimum number of resources to scale in to.
- policies
Sequence[GetAuto Scaling Configurations Auto Scaling Configuration Policy] 
- Autoscaling policy definitions for the autoscaling configuration. An autoscaling policy defines the criteria that trigger autoscaling actions and the actions to take.
- time_created str
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- autoScaling List<Property Map>Resources 
- A resource that is managed by an autoscaling configuration. The only supported type is "instancePool."
- compartmentId String
- The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
- coolDown NumberIn Seconds 
- For threshold-based autoscaling policies, this value is the minimum period of time to wait between scaling actions. The cooldown period gives the system time to stabilize before rescaling. The minimum value is 300 seconds, which is also the default. The cooldown period starts when the instance pool reaches the running state.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only resources that match the given display name exactly.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- ID of the condition that is assigned after creation.
- isEnabled Boolean
- Whether the autoscaling policy is enabled.
- maxResource NumberCount 
- The maximum number of resources to scale out to.
- minResource NumberCount 
- The minimum number of resources to scale in to.
- policies List<Property Map>
- Autoscaling policy definitions for the autoscaling configuration. An autoscaling policy defines the criteria that trigger autoscaling actions and the actions to take.
- timeCreated String
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
GetAutoScalingConfigurationsAutoScalingConfigurationAutoScalingResource         
GetAutoScalingConfigurationsAutoScalingConfigurationPolicy       
- Capacities
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Capacity> 
- The capacity requirements of the autoscaling policy.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- ExecutionSchedules List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Execution Schedule> 
- The schedule for executing the autoscaling policy.
- Id string
- ID of the condition that is assigned after creation.
- IsEnabled bool
- Whether the autoscaling policy is enabled.
- PolicyType string
- The type of autoscaling policy.
- ResourceActions List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Resource Action> 
- An action that can be executed against a resource.
- Rules
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule> 
- TimeCreated string
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- Capacities
[]GetAuto Scaling Configurations Auto Scaling Configuration Policy Capacity 
- The capacity requirements of the autoscaling policy.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- ExecutionSchedules []GetAuto Scaling Configurations Auto Scaling Configuration Policy Execution Schedule 
- The schedule for executing the autoscaling policy.
- Id string
- ID of the condition that is assigned after creation.
- IsEnabled bool
- Whether the autoscaling policy is enabled.
- PolicyType string
- The type of autoscaling policy.
- ResourceActions []GetAuto Scaling Configurations Auto Scaling Configuration Policy Resource Action 
- An action that can be executed against a resource.
- Rules
[]GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule 
- TimeCreated string
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- capacities
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Capacity> 
- The capacity requirements of the autoscaling policy.
- displayName String
- A filter to return only resources that match the given display name exactly.
- executionSchedules List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Execution Schedule> 
- The schedule for executing the autoscaling policy.
- id String
- ID of the condition that is assigned after creation.
- isEnabled Boolean
- Whether the autoscaling policy is enabled.
- policyType String
- The type of autoscaling policy.
- resourceActions List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Resource Action> 
- An action that can be executed against a resource.
- rules
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule> 
- timeCreated String
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- capacities
GetAuto Scaling Configurations Auto Scaling Configuration Policy Capacity[] 
- The capacity requirements of the autoscaling policy.
- displayName string
- A filter to return only resources that match the given display name exactly.
- executionSchedules GetAuto Scaling Configurations Auto Scaling Configuration Policy Execution Schedule[] 
- The schedule for executing the autoscaling policy.
- id string
- ID of the condition that is assigned after creation.
- isEnabled boolean
- Whether the autoscaling policy is enabled.
- policyType string
- The type of autoscaling policy.
- resourceActions GetAuto Scaling Configurations Auto Scaling Configuration Policy Resource Action[] 
- An action that can be executed against a resource.
- rules
GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule[] 
- timeCreated string
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- capacities
Sequence[GetAuto Scaling Configurations Auto Scaling Configuration Policy Capacity] 
- The capacity requirements of the autoscaling policy.
- display_name str
- A filter to return only resources that match the given display name exactly.
- execution_schedules Sequence[GetAuto Scaling Configurations Auto Scaling Configuration Policy Execution Schedule] 
- The schedule for executing the autoscaling policy.
- id str
- ID of the condition that is assigned after creation.
- is_enabled bool
- Whether the autoscaling policy is enabled.
- policy_type str
- The type of autoscaling policy.
- resource_actions Sequence[GetAuto Scaling Configurations Auto Scaling Configuration Policy Resource Action] 
- An action that can be executed against a resource.
- rules
Sequence[GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule] 
- time_created str
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
- capacities List<Property Map>
- The capacity requirements of the autoscaling policy.
- displayName String
- A filter to return only resources that match the given display name exactly.
- executionSchedules List<Property Map>
- The schedule for executing the autoscaling policy.
- id String
- ID of the condition that is assigned after creation.
- isEnabled Boolean
- Whether the autoscaling policy is enabled.
- policyType String
- The type of autoscaling policy.
- resourceActions List<Property Map>
- An action that can be executed against a resource.
- rules List<Property Map>
- timeCreated String
- The date and time the autoscaling configuration was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
GetAutoScalingConfigurationsAutoScalingConfigurationPolicyCapacity        
- Initial int
- For a threshold-based autoscaling policy, this value is the initial number of instances to launch in the instance pool immediately after autoscaling is enabled. After autoscaling retrieves performance metrics, the number of instances is automatically adjusted from this initial number to a number that is based on the limits that you set.
- Max int
- For a threshold-based autoscaling policy, this value is the maximum number of instances the instance pool is allowed to increase to (scale out).
- Min int
- For a threshold-based autoscaling policy, this value is the minimum number of instances the instance pool is allowed to decrease to (scale in).
- Initial int
- For a threshold-based autoscaling policy, this value is the initial number of instances to launch in the instance pool immediately after autoscaling is enabled. After autoscaling retrieves performance metrics, the number of instances is automatically adjusted from this initial number to a number that is based on the limits that you set.
- Max int
- For a threshold-based autoscaling policy, this value is the maximum number of instances the instance pool is allowed to increase to (scale out).
- Min int
- For a threshold-based autoscaling policy, this value is the minimum number of instances the instance pool is allowed to decrease to (scale in).
- initial Integer
- For a threshold-based autoscaling policy, this value is the initial number of instances to launch in the instance pool immediately after autoscaling is enabled. After autoscaling retrieves performance metrics, the number of instances is automatically adjusted from this initial number to a number that is based on the limits that you set.
- max Integer
- For a threshold-based autoscaling policy, this value is the maximum number of instances the instance pool is allowed to increase to (scale out).
- min Integer
- For a threshold-based autoscaling policy, this value is the minimum number of instances the instance pool is allowed to decrease to (scale in).
- initial number
- For a threshold-based autoscaling policy, this value is the initial number of instances to launch in the instance pool immediately after autoscaling is enabled. After autoscaling retrieves performance metrics, the number of instances is automatically adjusted from this initial number to a number that is based on the limits that you set.
- max number
- For a threshold-based autoscaling policy, this value is the maximum number of instances the instance pool is allowed to increase to (scale out).
- min number
- For a threshold-based autoscaling policy, this value is the minimum number of instances the instance pool is allowed to decrease to (scale in).
- initial int
- For a threshold-based autoscaling policy, this value is the initial number of instances to launch in the instance pool immediately after autoscaling is enabled. After autoscaling retrieves performance metrics, the number of instances is automatically adjusted from this initial number to a number that is based on the limits that you set.
- max int
- For a threshold-based autoscaling policy, this value is the maximum number of instances the instance pool is allowed to increase to (scale out).
- min int
- For a threshold-based autoscaling policy, this value is the minimum number of instances the instance pool is allowed to decrease to (scale in).
- initial Number
- For a threshold-based autoscaling policy, this value is the initial number of instances to launch in the instance pool immediately after autoscaling is enabled. After autoscaling retrieves performance metrics, the number of instances is automatically adjusted from this initial number to a number that is based on the limits that you set.
- max Number
- For a threshold-based autoscaling policy, this value is the maximum number of instances the instance pool is allowed to increase to (scale out).
- min Number
- For a threshold-based autoscaling policy, this value is the minimum number of instances the instance pool is allowed to decrease to (scale in).
GetAutoScalingConfigurationsAutoScalingConfigurationPolicyExecutionSchedule         
- Expression string
- A cron expression that represents the time at which to execute the autoscaling policy.
- Timezone string
- The time zone for the execution schedule.
- Type string
- The type of action to take.
- Expression string
- A cron expression that represents the time at which to execute the autoscaling policy.
- Timezone string
- The time zone for the execution schedule.
- Type string
- The type of action to take.
- expression String
- A cron expression that represents the time at which to execute the autoscaling policy.
- timezone String
- The time zone for the execution schedule.
- type String
- The type of action to take.
- expression string
- A cron expression that represents the time at which to execute the autoscaling policy.
- timezone string
- The time zone for the execution schedule.
- type string
- The type of action to take.
- expression str
- A cron expression that represents the time at which to execute the autoscaling policy.
- timezone str
- The time zone for the execution schedule.
- type str
- The type of action to take.
- expression String
- A cron expression that represents the time at which to execute the autoscaling policy.
- timezone String
- The time zone for the execution schedule.
- type String
- The type of action to take.
GetAutoScalingConfigurationsAutoScalingConfigurationPolicyResourceAction         
- Action string
- The action to take when autoscaling is triggered.
- ActionType string
- The type of resource action.
- Action string
- The action to take when autoscaling is triggered.
- ActionType string
- The type of resource action.
- action String
- The action to take when autoscaling is triggered.
- actionType String
- The type of resource action.
- action string
- The action to take when autoscaling is triggered.
- actionType string
- The type of resource action.
- action str
- The action to take when autoscaling is triggered.
- action_type str
- The type of resource action.
- action String
- The action to take when autoscaling is triggered.
- actionType String
- The type of resource action.
GetAutoScalingConfigurationsAutoScalingConfigurationPolicyRule        
- Actions
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Action> 
- The action to take when autoscaling is triggered.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Id string
- ID of the condition that is assigned after creation.
- Metrics
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Metric> 
- Metric and threshold details for triggering an autoscaling action.
- Actions
[]GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Action 
- The action to take when autoscaling is triggered.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Id string
- ID of the condition that is assigned after creation.
- Metrics
[]GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Metric 
- Metric and threshold details for triggering an autoscaling action.
- actions
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Action> 
- The action to take when autoscaling is triggered.
- displayName String
- A filter to return only resources that match the given display name exactly.
- id String
- ID of the condition that is assigned after creation.
- metrics
List<GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Metric> 
- Metric and threshold details for triggering an autoscaling action.
- actions
GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Action[] 
- The action to take when autoscaling is triggered.
- displayName string
- A filter to return only resources that match the given display name exactly.
- id string
- ID of the condition that is assigned after creation.
- metrics
GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Metric[] 
- Metric and threshold details for triggering an autoscaling action.
- actions
Sequence[GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Action] 
- The action to take when autoscaling is triggered.
- display_name str
- A filter to return only resources that match the given display name exactly.
- id str
- ID of the condition that is assigned after creation.
- metrics
Sequence[GetAuto Scaling Configurations Auto Scaling Configuration Policy Rule Metric] 
- Metric and threshold details for triggering an autoscaling action.
- actions List<Property Map>
- The action to take when autoscaling is triggered.
- displayName String
- A filter to return only resources that match the given display name exactly.
- id String
- ID of the condition that is assigned after creation.
- metrics List<Property Map>
- Metric and threshold details for triggering an autoscaling action.
GetAutoScalingConfigurationsAutoScalingConfigurationPolicyRuleAction         
GetAutoScalingConfigurationsAutoScalingConfigurationPolicyRuleMetric         
GetAutoScalingConfigurationsAutoScalingConfigurationPolicyRuleMetricThreshold          
GetAutoScalingConfigurationsFilter    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.