Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.bigtableadmin/v2.AppProfile
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates an app profile within an instance.
Create AppProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppProfile(name: string, args: AppProfileArgs, opts?: CustomResourceOptions);@overload
def AppProfile(resource_name: str,
               args: AppProfileArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def AppProfile(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               app_profile_id: Optional[str] = None,
               instance_id: Optional[str] = None,
               description: Optional[str] = None,
               etag: Optional[str] = None,
               ignore_warnings: Optional[bool] = None,
               multi_cluster_routing_use_any: Optional[MultiClusterRoutingUseAnyArgs] = None,
               name: Optional[str] = None,
               priority: Optional[AppProfilePriority] = None,
               project: Optional[str] = None,
               single_cluster_routing: Optional[SingleClusterRoutingArgs] = None,
               standard_isolation: Optional[StandardIsolationArgs] = None)func NewAppProfile(ctx *Context, name string, args AppProfileArgs, opts ...ResourceOption) (*AppProfile, error)public AppProfile(string name, AppProfileArgs args, CustomResourceOptions? opts = null)
public AppProfile(String name, AppProfileArgs args)
public AppProfile(String name, AppProfileArgs args, CustomResourceOptions options)
type: google-native:bigtableadmin/v2:AppProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AppProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AppProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AppProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var appProfileResource = new GoogleNative.BigtableAdmin.V2.AppProfile("appProfileResource", new()
{
    AppProfileId = "string",
    InstanceId = "string",
    Description = "string",
    Etag = "string",
    IgnoreWarnings = false,
    MultiClusterRoutingUseAny = new GoogleNative.BigtableAdmin.V2.Inputs.MultiClusterRoutingUseAnyArgs
    {
        ClusterIds = new[]
        {
            "string",
        },
    },
    Name = "string",
    Priority = GoogleNative.BigtableAdmin.V2.AppProfilePriority.PriorityUnspecified,
    Project = "string",
    SingleClusterRouting = new GoogleNative.BigtableAdmin.V2.Inputs.SingleClusterRoutingArgs
    {
        AllowTransactionalWrites = false,
        ClusterId = "string",
    },
    StandardIsolation = new GoogleNative.BigtableAdmin.V2.Inputs.StandardIsolationArgs
    {
        Priority = GoogleNative.BigtableAdmin.V2.StandardIsolationPriority.PriorityUnspecified,
    },
});
example, err := bigtableadmin.NewAppProfile(ctx, "appProfileResource", &bigtableadmin.AppProfileArgs{
	AppProfileId:   pulumi.String("string"),
	InstanceId:     pulumi.String("string"),
	Description:    pulumi.String("string"),
	Etag:           pulumi.String("string"),
	IgnoreWarnings: pulumi.Bool(false),
	MultiClusterRoutingUseAny: &bigtableadmin.MultiClusterRoutingUseAnyArgs{
		ClusterIds: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Name:     pulumi.String("string"),
	Priority: bigtableadmin.AppProfilePriorityPriorityUnspecified,
	Project:  pulumi.String("string"),
	SingleClusterRouting: &bigtableadmin.SingleClusterRoutingArgs{
		AllowTransactionalWrites: pulumi.Bool(false),
		ClusterId:                pulumi.String("string"),
	},
	StandardIsolation: &bigtableadmin.StandardIsolationArgs{
		Priority: bigtableadmin.StandardIsolationPriorityPriorityUnspecified,
	},
})
var appProfileResource = new AppProfile("appProfileResource", AppProfileArgs.builder()
    .appProfileId("string")
    .instanceId("string")
    .description("string")
    .etag("string")
    .ignoreWarnings(false)
    .multiClusterRoutingUseAny(MultiClusterRoutingUseAnyArgs.builder()
        .clusterIds("string")
        .build())
    .name("string")
    .priority("PRIORITY_UNSPECIFIED")
    .project("string")
    .singleClusterRouting(SingleClusterRoutingArgs.builder()
        .allowTransactionalWrites(false)
        .clusterId("string")
        .build())
    .standardIsolation(StandardIsolationArgs.builder()
        .priority("PRIORITY_UNSPECIFIED")
        .build())
    .build());
app_profile_resource = google_native.bigtableadmin.v2.AppProfile("appProfileResource",
    app_profile_id="string",
    instance_id="string",
    description="string",
    etag="string",
    ignore_warnings=False,
    multi_cluster_routing_use_any={
        "cluster_ids": ["string"],
    },
    name="string",
    priority=google_native.bigtableadmin.v2.AppProfilePriority.PRIORITY_UNSPECIFIED,
    project="string",
    single_cluster_routing={
        "allow_transactional_writes": False,
        "cluster_id": "string",
    },
    standard_isolation={
        "priority": google_native.bigtableadmin.v2.StandardIsolationPriority.PRIORITY_UNSPECIFIED,
    })
const appProfileResource = new google_native.bigtableadmin.v2.AppProfile("appProfileResource", {
    appProfileId: "string",
    instanceId: "string",
    description: "string",
    etag: "string",
    ignoreWarnings: false,
    multiClusterRoutingUseAny: {
        clusterIds: ["string"],
    },
    name: "string",
    priority: google_native.bigtableadmin.v2.AppProfilePriority.PriorityUnspecified,
    project: "string",
    singleClusterRouting: {
        allowTransactionalWrites: false,
        clusterId: "string",
    },
    standardIsolation: {
        priority: google_native.bigtableadmin.v2.StandardIsolationPriority.PriorityUnspecified,
    },
});
type: google-native:bigtableadmin/v2:AppProfile
properties:
    appProfileId: string
    description: string
    etag: string
    ignoreWarnings: false
    instanceId: string
    multiClusterRoutingUseAny:
        clusterIds:
            - string
    name: string
    priority: PRIORITY_UNSPECIFIED
    project: string
    singleClusterRouting:
        allowTransactionalWrites: false
        clusterId: string
    standardIsolation:
        priority: PRIORITY_UNSPECIFIED
AppProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AppProfile resource accepts the following input properties:
- AppProfile stringId 
- Required. The ID to be used when referring to the new app profile within its instance, e.g., just myprofilerather thanprojects/myproject/instances/myinstance/appProfiles/myprofile.
- InstanceId string
- Description string
- Long form description of the use case for this AppProfile.
- Etag string
- Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfilewhen callingUpdateAppProfileto fail the request if there has been a modification in the mean time. Theupdate_maskof the request need not includeetagfor this protection to apply. See Wikipedia and RFC 7232 for more details.
- IgnoreWarnings bool
- If true, ignore safety checks when creating the app profile.
- MultiCluster Pulumi.Routing Use Any Google Native. Bigtable Admin. V2. Inputs. Multi Cluster Routing Use Any 
- Use a multi-cluster routing policy.
- Name string
- The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*.
- Priority
Pulumi.Google Native. Bigtable Admin. V2. App Profile Priority 
- This field has been deprecated in favor of standard_isolation.priority. If you set this field,standard_isolation.prioritywill be set instead. The priority of requests sent using this app profile.
- Project string
- SingleCluster Pulumi.Routing Google Native. Bigtable Admin. V2. Inputs. Single Cluster Routing 
- Use a single-cluster routing policy.
- StandardIsolation Pulumi.Google Native. Bigtable Admin. V2. Inputs. Standard Isolation 
- The standard options used for isolating this app profile's traffic from other use cases.
- AppProfile stringId 
- Required. The ID to be used when referring to the new app profile within its instance, e.g., just myprofilerather thanprojects/myproject/instances/myinstance/appProfiles/myprofile.
- InstanceId string
- Description string
- Long form description of the use case for this AppProfile.
- Etag string
- Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfilewhen callingUpdateAppProfileto fail the request if there has been a modification in the mean time. Theupdate_maskof the request need not includeetagfor this protection to apply. See Wikipedia and RFC 7232 for more details.
- IgnoreWarnings bool
- If true, ignore safety checks when creating the app profile.
- MultiCluster MultiRouting Use Any Cluster Routing Use Any Args 
- Use a multi-cluster routing policy.
- Name string
- The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*.
- Priority
AppProfile Priority 
- This field has been deprecated in favor of standard_isolation.priority. If you set this field,standard_isolation.prioritywill be set instead. The priority of requests sent using this app profile.
- Project string
- SingleCluster SingleRouting Cluster Routing Args 
- Use a single-cluster routing policy.
- StandardIsolation StandardIsolation Args 
- The standard options used for isolating this app profile's traffic from other use cases.
- appProfile StringId 
- Required. The ID to be used when referring to the new app profile within its instance, e.g., just myprofilerather thanprojects/myproject/instances/myinstance/appProfiles/myprofile.
- instanceId String
- description String
- Long form description of the use case for this AppProfile.
- etag String
- Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfilewhen callingUpdateAppProfileto fail the request if there has been a modification in the mean time. Theupdate_maskof the request need not includeetagfor this protection to apply. See Wikipedia and RFC 7232 for more details.
- ignoreWarnings Boolean
- If true, ignore safety checks when creating the app profile.
- multiCluster MultiRouting Use Any Cluster Routing Use Any 
- Use a multi-cluster routing policy.
- name String
- The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*.
- priority
AppProfile Priority 
- This field has been deprecated in favor of standard_isolation.priority. If you set this field,standard_isolation.prioritywill be set instead. The priority of requests sent using this app profile.
- project String
- singleCluster SingleRouting Cluster Routing 
- Use a single-cluster routing policy.
- standardIsolation StandardIsolation 
- The standard options used for isolating this app profile's traffic from other use cases.
- appProfile stringId 
- Required. The ID to be used when referring to the new app profile within its instance, e.g., just myprofilerather thanprojects/myproject/instances/myinstance/appProfiles/myprofile.
- instanceId string
- description string
- Long form description of the use case for this AppProfile.
- etag string
- Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfilewhen callingUpdateAppProfileto fail the request if there has been a modification in the mean time. Theupdate_maskof the request need not includeetagfor this protection to apply. See Wikipedia and RFC 7232 for more details.
- ignoreWarnings boolean
- If true, ignore safety checks when creating the app profile.
- multiCluster MultiRouting Use Any Cluster Routing Use Any 
- Use a multi-cluster routing policy.
- name string
- The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*.
- priority
AppProfile Priority 
- This field has been deprecated in favor of standard_isolation.priority. If you set this field,standard_isolation.prioritywill be set instead. The priority of requests sent using this app profile.
- project string
- singleCluster SingleRouting Cluster Routing 
- Use a single-cluster routing policy.
- standardIsolation StandardIsolation 
- The standard options used for isolating this app profile's traffic from other use cases.
- app_profile_ strid 
- Required. The ID to be used when referring to the new app profile within its instance, e.g., just myprofilerather thanprojects/myproject/instances/myinstance/appProfiles/myprofile.
- instance_id str
- description str
- Long form description of the use case for this AppProfile.
- etag str
- Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfilewhen callingUpdateAppProfileto fail the request if there has been a modification in the mean time. Theupdate_maskof the request need not includeetagfor this protection to apply. See Wikipedia and RFC 7232 for more details.
- ignore_warnings bool
- If true, ignore safety checks when creating the app profile.
- multi_cluster_ Multirouting_ use_ any Cluster Routing Use Any Args 
- Use a multi-cluster routing policy.
- name str
- The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*.
- priority
AppProfile Priority 
- This field has been deprecated in favor of standard_isolation.priority. If you set this field,standard_isolation.prioritywill be set instead. The priority of requests sent using this app profile.
- project str
- single_cluster_ Singlerouting Cluster Routing Args 
- Use a single-cluster routing policy.
- standard_isolation StandardIsolation Args 
- The standard options used for isolating this app profile's traffic from other use cases.
- appProfile StringId 
- Required. The ID to be used when referring to the new app profile within its instance, e.g., just myprofilerather thanprojects/myproject/instances/myinstance/appProfiles/myprofile.
- instanceId String
- description String
- Long form description of the use case for this AppProfile.
- etag String
- Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfilewhen callingUpdateAppProfileto fail the request if there has been a modification in the mean time. Theupdate_maskof the request need not includeetagfor this protection to apply. See Wikipedia and RFC 7232 for more details.
- ignoreWarnings Boolean
- If true, ignore safety checks when creating the app profile.
- multiCluster Property MapRouting Use Any 
- Use a multi-cluster routing policy.
- name String
- The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*.
- priority "PRIORITY_UNSPECIFIED" | "PRIORITY_LOW" | "PRIORITY_MEDIUM" | "PRIORITY_HIGH"
- This field has been deprecated in favor of standard_isolation.priority. If you set this field,standard_isolation.prioritywill be set instead. The priority of requests sent using this app profile.
- project String
- singleCluster Property MapRouting 
- Use a single-cluster routing policy.
- standardIsolation Property Map
- The standard options used for isolating this app profile's traffic from other use cases.
Outputs
All input properties are implicitly available as output properties. Additionally, the AppProfile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
AppProfilePriority, AppProfilePriorityArgs      
- PriorityUnspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PriorityLow 
- PRIORITY_LOW
- PriorityMedium 
- PRIORITY_MEDIUM
- PriorityHigh 
- PRIORITY_HIGH
- AppProfile Priority Priority Unspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- AppProfile Priority Priority Low 
- PRIORITY_LOW
- AppProfile Priority Priority Medium 
- PRIORITY_MEDIUM
- AppProfile Priority Priority High 
- PRIORITY_HIGH
- PriorityUnspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PriorityLow 
- PRIORITY_LOW
- PriorityMedium 
- PRIORITY_MEDIUM
- PriorityHigh 
- PRIORITY_HIGH
- PriorityUnspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PriorityLow 
- PRIORITY_LOW
- PriorityMedium 
- PRIORITY_MEDIUM
- PriorityHigh 
- PRIORITY_HIGH
- PRIORITY_UNSPECIFIED
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PRIORITY_LOW
- PRIORITY_LOW
- PRIORITY_MEDIUM
- PRIORITY_MEDIUM
- PRIORITY_HIGH
- PRIORITY_HIGH
- "PRIORITY_UNSPECIFIED"
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- "PRIORITY_LOW"
- PRIORITY_LOW
- "PRIORITY_MEDIUM"
- PRIORITY_MEDIUM
- "PRIORITY_HIGH"
- PRIORITY_HIGH
MultiClusterRoutingUseAny, MultiClusterRoutingUseAnyArgs          
- ClusterIds List<string>
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- ClusterIds []string
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- clusterIds List<String>
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- clusterIds string[]
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- cluster_ids Sequence[str]
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- clusterIds List<String>
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
MultiClusterRoutingUseAnyResponse, MultiClusterRoutingUseAnyResponseArgs            
- ClusterIds List<string>
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- ClusterIds []string
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- clusterIds List<String>
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- clusterIds string[]
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- cluster_ids Sequence[str]
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
- clusterIds List<String>
- The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
SingleClusterRouting, SingleClusterRoutingArgs      
- AllowTransactional boolWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- ClusterId string
- The cluster to which read/write requests should be routed.
- AllowTransactional boolWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- ClusterId string
- The cluster to which read/write requests should be routed.
- allowTransactional BooleanWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- clusterId String
- The cluster to which read/write requests should be routed.
- allowTransactional booleanWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- clusterId string
- The cluster to which read/write requests should be routed.
- allow_transactional_ boolwrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- cluster_id str
- The cluster to which read/write requests should be routed.
- allowTransactional BooleanWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- clusterId String
- The cluster to which read/write requests should be routed.
SingleClusterRoutingResponse, SingleClusterRoutingResponseArgs        
- AllowTransactional boolWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- ClusterId string
- The cluster to which read/write requests should be routed.
- AllowTransactional boolWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- ClusterId string
- The cluster to which read/write requests should be routed.
- allowTransactional BooleanWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- clusterId String
- The cluster to which read/write requests should be routed.
- allowTransactional booleanWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- clusterId string
- The cluster to which read/write requests should be routed.
- allow_transactional_ boolwrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- cluster_id str
- The cluster to which read/write requests should be routed.
- allowTransactional BooleanWrites 
- Whether or not CheckAndMutateRowandReadModifyWriteRowrequests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.
- clusterId String
- The cluster to which read/write requests should be routed.
StandardIsolation, StandardIsolationArgs    
- Priority
Pulumi.Google Native. Bigtable Admin. V2. Standard Isolation Priority 
- The priority of requests sent using this app profile.
- Priority
StandardIsolation Priority 
- The priority of requests sent using this app profile.
- priority
StandardIsolation Priority 
- The priority of requests sent using this app profile.
- priority
StandardIsolation Priority 
- The priority of requests sent using this app profile.
- priority
StandardIsolation Priority 
- The priority of requests sent using this app profile.
- priority "PRIORITY_UNSPECIFIED" | "PRIORITY_LOW" | "PRIORITY_MEDIUM" | "PRIORITY_HIGH"
- The priority of requests sent using this app profile.
StandardIsolationPriority, StandardIsolationPriorityArgs      
- PriorityUnspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PriorityLow 
- PRIORITY_LOW
- PriorityMedium 
- PRIORITY_MEDIUM
- PriorityHigh 
- PRIORITY_HIGH
- StandardIsolation Priority Priority Unspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- StandardIsolation Priority Priority Low 
- PRIORITY_LOW
- StandardIsolation Priority Priority Medium 
- PRIORITY_MEDIUM
- StandardIsolation Priority Priority High 
- PRIORITY_HIGH
- PriorityUnspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PriorityLow 
- PRIORITY_LOW
- PriorityMedium 
- PRIORITY_MEDIUM
- PriorityHigh 
- PRIORITY_HIGH
- PriorityUnspecified 
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PriorityLow 
- PRIORITY_LOW
- PriorityMedium 
- PRIORITY_MEDIUM
- PriorityHigh 
- PRIORITY_HIGH
- PRIORITY_UNSPECIFIED
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- PRIORITY_LOW
- PRIORITY_LOW
- PRIORITY_MEDIUM
- PRIORITY_MEDIUM
- PRIORITY_HIGH
- PRIORITY_HIGH
- "PRIORITY_UNSPECIFIED"
- PRIORITY_UNSPECIFIEDDefault value. Mapped to PRIORITY_HIGH (the legacy behavior) on creation.
- "PRIORITY_LOW"
- PRIORITY_LOW
- "PRIORITY_MEDIUM"
- PRIORITY_MEDIUM
- "PRIORITY_HIGH"
- PRIORITY_HIGH
StandardIsolationResponse, StandardIsolationResponseArgs      
- Priority string
- The priority of requests sent using this app profile.
- Priority string
- The priority of requests sent using this app profile.
- priority String
- The priority of requests sent using this app profile.
- priority string
- The priority of requests sent using this app profile.
- priority str
- The priority of requests sent using this app profile.
- priority String
- The priority of requests sent using this app profile.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.