azure-native-v2.cognitiveservices.CommitmentPlan
Explore with Pulumi AI
Cognitive Services account commitment plan. Azure REST API version: 2023-05-01. Prior API version in Azure Native 1.x: 2021-10-01.
Other available API versions: 2023-10-01-preview, 2024-04-01-preview, 2024-06-01-preview, 2024-10-01.
Create CommitmentPlan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CommitmentPlan(name: string, args: CommitmentPlanArgs, opts?: CustomResourceOptions);
@overload
def CommitmentPlan(resource_name: str,
args: CommitmentPlanArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CommitmentPlan(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
commitment_plan_name: Optional[str] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[CommitmentPlanPropertiesArgs] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewCommitmentPlan(ctx *Context, name string, args CommitmentPlanArgs, opts ...ResourceOption) (*CommitmentPlan, error)
public CommitmentPlan(string name, CommitmentPlanArgs args, CustomResourceOptions? opts = null)
public CommitmentPlan(String name, CommitmentPlanArgs args)
public CommitmentPlan(String name, CommitmentPlanArgs args, CustomResourceOptions options)
type: azure-native:cognitiveservices:CommitmentPlan
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. CommitmentPlanArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. CommitmentPlanArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. CommitmentPlanArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. CommitmentPlanArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. CommitmentPlanArgs - 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 commitmentPlanResource = new AzureNative.Cognitiveservices.CommitmentPlan("commitmentPlanResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
CommitmentPlanName = "string",
Kind = "string",
Location = "string",
Properties =
{
{ "autoRenew", false },
{ "commitmentPlanGuid", "string" },
{ "current",
{
{ "count", 0 },
{ "tier", "string" },
} },
{ "hostingModel", "string" },
{ "next",
{
{ "count", 0 },
{ "tier", "string" },
} },
{ "planType", "string" },
},
Sku =
{
{ "name", "string" },
{ "capacity", 0 },
{ "family", "string" },
{ "size", "string" },
{ "tier", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := cognitiveservices.NewCommitmentPlan(ctx, "commitmentPlanResource", &cognitiveservices.CommitmentPlanArgs{
AccountName: "string",
ResourceGroupName: "string",
CommitmentPlanName: "string",
Kind: "string",
Location: "string",
Properties: map[string]interface{}{
"autoRenew": false,
"commitmentPlanGuid": "string",
"current": map[string]interface{}{
"count": 0,
"tier": "string",
},
"hostingModel": "string",
"next": map[string]interface{}{
"count": 0,
"tier": "string",
},
"planType": "string",
},
Sku: map[string]interface{}{
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var commitmentPlanResource = new CommitmentPlan("commitmentPlanResource", CommitmentPlanArgs.builder()
.accountName("string")
.resourceGroupName("string")
.commitmentPlanName("string")
.kind("string")
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
commitment_plan_resource = azure_native.cognitiveservices.CommitmentPlan("commitmentPlanResource",
account_name=string,
resource_group_name=string,
commitment_plan_name=string,
kind=string,
location=string,
properties={
autoRenew: False,
commitmentPlanGuid: string,
current: {
count: 0,
tier: string,
},
hostingModel: string,
next: {
count: 0,
tier: string,
},
planType: string,
},
sku={
name: string,
capacity: 0,
family: string,
size: string,
tier: string,
},
tags={
string: string,
})
const commitmentPlanResource = new azure_native.cognitiveservices.CommitmentPlan("commitmentPlanResource", {
accountName: "string",
resourceGroupName: "string",
commitmentPlanName: "string",
kind: "string",
location: "string",
properties: {
autoRenew: false,
commitmentPlanGuid: "string",
current: {
count: 0,
tier: "string",
},
hostingModel: "string",
next: {
count: 0,
tier: "string",
},
planType: "string",
},
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: "string",
},
tags: {
string: "string",
},
});
type: azure-native:cognitiveservices:CommitmentPlan
properties:
accountName: string
commitmentPlanName: string
kind: string
location: string
properties:
autoRenew: false
commitmentPlanGuid: string
current:
count: 0
tier: string
hostingModel: string
next:
count: 0
tier: string
planType: string
resourceGroupName: string
sku:
capacity: 0
family: string
name: string
size: string
tier: string
tags:
string: string
CommitmentPlan 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 CommitmentPlan resource accepts the following input properties:
- Account
Name This property is required. Changes to this property will trigger replacement.
- The name of Cognitive Services account.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Commitment
Plan Name Changes to this property will trigger replacement.
- The name of the commitmentPlan associated with the Cognitive Services Account
- Kind string
- The Kind of the resource.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Cognitive Services. Inputs. Commitment Plan Properties - Properties of Cognitive Services account commitment plan.
- Sku
Pulumi.
Azure Native. Cognitive Services. Inputs. Sku - The resource model definition representing SKU
- Dictionary<string, string>
- Resource tags.
- Account
Name This property is required. Changes to this property will trigger replacement.
- The name of Cognitive Services account.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Commitment
Plan Name Changes to this property will trigger replacement.
- The name of the commitmentPlan associated with the Cognitive Services Account
- Kind string
- The Kind of the resource.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Properties
Commitment
Plan Properties Args - Properties of Cognitive Services account commitment plan.
- Sku
Sku
Args - The resource model definition representing SKU
- map[string]string
- Resource tags.
- account
Name This property is required. Changes to this property will trigger replacement.
- The name of Cognitive Services account.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- commitment
Plan Name Changes to this property will trigger replacement.
- The name of the commitmentPlan associated with the Cognitive Services Account
- kind String
- The Kind of the resource.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- properties
Commitment
Plan Properties - Properties of Cognitive Services account commitment plan.
- sku Sku
- The resource model definition representing SKU
- Map<String,String>
- Resource tags.
- account
Name This property is required. Changes to this property will trigger replacement.
- The name of Cognitive Services account.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- commitment
Plan Name Changes to this property will trigger replacement.
- The name of the commitmentPlan associated with the Cognitive Services Account
- kind string
- The Kind of the resource.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- properties
Commitment
Plan Properties - Properties of Cognitive Services account commitment plan.
- sku Sku
- The resource model definition representing SKU
- {[key: string]: string}
- Resource tags.
- account_
name This property is required. Changes to this property will trigger replacement.
- The name of Cognitive Services account.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- commitment_
plan_ name Changes to this property will trigger replacement.
- The name of the commitmentPlan associated with the Cognitive Services Account
- kind str
- The Kind of the resource.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- properties
Commitment
Plan Properties Args - Properties of Cognitive Services account commitment plan.
- sku
Sku
Args - The resource model definition representing SKU
- Mapping[str, str]
- Resource tags.
- account
Name This property is required. Changes to this property will trigger replacement.
- The name of Cognitive Services account.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- commitment
Plan Name Changes to this property will trigger replacement.
- The name of the commitmentPlan associated with the Cognitive Services Account
- kind String
- The Kind of the resource.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- properties Property Map
- Properties of Cognitive Services account commitment plan.
- sku Property Map
- The resource model definition representing SKU
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the CommitmentPlan resource produces the following output properties:
- Etag string
- Resource Etag.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Cognitive Services. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Resource Etag.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Resource Etag.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag string
- Resource Etag.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag str
- Resource Etag.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Resource Etag.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CommitmentPeriod, CommitmentPeriodArgs
CommitmentPeriodResponse, CommitmentPeriodResponseArgs
- End
Date This property is required. string - Commitment period end date.
- Quota
This property is required. Pulumi.Azure Native. Cognitive Services. Inputs. Commitment Quota Response - Cognitive Services account commitment quota.
- Start
Date This property is required. string - Commitment period start date.
- Count int
- Commitment period commitment count.
- Tier string
- Commitment period commitment tier.
- End
Date This property is required. string - Commitment period end date.
- Quota
This property is required. CommitmentQuota Response - Cognitive Services account commitment quota.
- Start
Date This property is required. string - Commitment period start date.
- Count int
- Commitment period commitment count.
- Tier string
- Commitment period commitment tier.
- end
Date This property is required. String - Commitment period end date.
- quota
This property is required. CommitmentQuota Response - Cognitive Services account commitment quota.
- start
Date This property is required. String - Commitment period start date.
- count Integer
- Commitment period commitment count.
- tier String
- Commitment period commitment tier.
- end
Date This property is required. string - Commitment period end date.
- quota
This property is required. CommitmentQuota Response - Cognitive Services account commitment quota.
- start
Date This property is required. string - Commitment period start date.
- count number
- Commitment period commitment count.
- tier string
- Commitment period commitment tier.
- end_
date This property is required. str - Commitment period end date.
- quota
This property is required. CommitmentQuota Response - Cognitive Services account commitment quota.
- start_
date This property is required. str - Commitment period start date.
- count int
- Commitment period commitment count.
- tier str
- Commitment period commitment tier.
- end
Date This property is required. String - Commitment period end date.
- quota
This property is required. Property Map - Cognitive Services account commitment quota.
- start
Date This property is required. String - Commitment period start date.
- count Number
- Commitment period commitment count.
- tier String
- Commitment period commitment tier.
CommitmentPlanProperties, CommitmentPlanPropertiesArgs
- Auto
Renew bool - AutoRenew commitment plan.
- Commitment
Plan stringGuid - Commitment plan guid.
- Current
Pulumi.
Azure Native. Cognitive Services. Inputs. Commitment Period - Cognitive Services account commitment period.
- Hosting
Model string | Pulumi.Azure Native. Cognitive Services. Hosting Model - Account hosting model.
- Next
Pulumi.
Azure Native. Cognitive Services. Inputs. Commitment Period - Cognitive Services account commitment period.
- Plan
Type string - Commitment plan type.
- Auto
Renew bool - AutoRenew commitment plan.
- Commitment
Plan stringGuid - Commitment plan guid.
- Current
Commitment
Period - Cognitive Services account commitment period.
- Hosting
Model string | HostingModel - Account hosting model.
- Next
Commitment
Period - Cognitive Services account commitment period.
- Plan
Type string - Commitment plan type.
- auto
Renew Boolean - AutoRenew commitment plan.
- commitment
Plan StringGuid - Commitment plan guid.
- current
Commitment
Period - Cognitive Services account commitment period.
- hosting
Model String | HostingModel - Account hosting model.
- next
Commitment
Period - Cognitive Services account commitment period.
- plan
Type String - Commitment plan type.
- auto
Renew boolean - AutoRenew commitment plan.
- commitment
Plan stringGuid - Commitment plan guid.
- current
Commitment
Period - Cognitive Services account commitment period.
- hosting
Model string | HostingModel - Account hosting model.
- next
Commitment
Period - Cognitive Services account commitment period.
- plan
Type string - Commitment plan type.
- auto_
renew bool - AutoRenew commitment plan.
- commitment_
plan_ strguid - Commitment plan guid.
- current
Commitment
Period - Cognitive Services account commitment period.
- hosting_
model str | HostingModel - Account hosting model.
- next
Commitment
Period - Cognitive Services account commitment period.
- plan_
type str - Commitment plan type.
- auto
Renew Boolean - AutoRenew commitment plan.
- commitment
Plan StringGuid - Commitment plan guid.
- current Property Map
- Cognitive Services account commitment period.
- hosting
Model String | "Web" | "ConnectedContainer" | "Disconnected Container" | "Provisioned Web" - Account hosting model.
- next Property Map
- Cognitive Services account commitment period.
- plan
Type String - Commitment plan type.
CommitmentPlanPropertiesResponse, CommitmentPlanPropertiesResponseArgs
- Last
This property is required. Pulumi.Azure Native. Cognitive Services. Inputs. Commitment Period Response - Cognitive Services account commitment period.
- Provisioning
Issues This property is required. List<string> - The list of ProvisioningIssue.
- Provisioning
State This property is required. string - Gets the status of the resource at the time the operation was called.
- Auto
Renew bool - AutoRenew commitment plan.
- Commitment
Plan stringGuid - Commitment plan guid.
- Current
Pulumi.
Azure Native. Cognitive Services. Inputs. Commitment Period Response - Cognitive Services account commitment period.
- Hosting
Model string - Account hosting model.
- Next
Pulumi.
Azure Native. Cognitive Services. Inputs. Commitment Period Response - Cognitive Services account commitment period.
- Plan
Type string - Commitment plan type.
- Last
This property is required. CommitmentPeriod Response - Cognitive Services account commitment period.
- Provisioning
Issues This property is required. []string - The list of ProvisioningIssue.
- Provisioning
State This property is required. string - Gets the status of the resource at the time the operation was called.
- Auto
Renew bool - AutoRenew commitment plan.
- Commitment
Plan stringGuid - Commitment plan guid.
- Current
Commitment
Period Response - Cognitive Services account commitment period.
- Hosting
Model string - Account hosting model.
- Next
Commitment
Period Response - Cognitive Services account commitment period.
- Plan
Type string - Commitment plan type.
- last
This property is required. CommitmentPeriod Response - Cognitive Services account commitment period.
- provisioning
Issues This property is required. List<String> - The list of ProvisioningIssue.
- provisioning
State This property is required. String - Gets the status of the resource at the time the operation was called.
- auto
Renew Boolean - AutoRenew commitment plan.
- commitment
Plan StringGuid - Commitment plan guid.
- current
Commitment
Period Response - Cognitive Services account commitment period.
- hosting
Model String - Account hosting model.
- next
Commitment
Period Response - Cognitive Services account commitment period.
- plan
Type String - Commitment plan type.
- last
This property is required. CommitmentPeriod Response - Cognitive Services account commitment period.
- provisioning
Issues This property is required. string[] - The list of ProvisioningIssue.
- provisioning
State This property is required. string - Gets the status of the resource at the time the operation was called.
- auto
Renew boolean - AutoRenew commitment plan.
- commitment
Plan stringGuid - Commitment plan guid.
- current
Commitment
Period Response - Cognitive Services account commitment period.
- hosting
Model string - Account hosting model.
- next
Commitment
Period Response - Cognitive Services account commitment period.
- plan
Type string - Commitment plan type.
- last
This property is required. CommitmentPeriod Response - Cognitive Services account commitment period.
- provisioning_
issues This property is required. Sequence[str] - The list of ProvisioningIssue.
- provisioning_
state This property is required. str - Gets the status of the resource at the time the operation was called.
- auto_
renew bool - AutoRenew commitment plan.
- commitment_
plan_ strguid - Commitment plan guid.
- current
Commitment
Period Response - Cognitive Services account commitment period.
- hosting_
model str - Account hosting model.
- next
Commitment
Period Response - Cognitive Services account commitment period.
- plan_
type str - Commitment plan type.
- last
This property is required. Property Map - Cognitive Services account commitment period.
- provisioning
Issues This property is required. List<String> - The list of ProvisioningIssue.
- provisioning
State This property is required. String - Gets the status of the resource at the time the operation was called.
- auto
Renew Boolean - AutoRenew commitment plan.
- commitment
Plan StringGuid - Commitment plan guid.
- current Property Map
- Cognitive Services account commitment period.
- hosting
Model String - Account hosting model.
- next Property Map
- Cognitive Services account commitment period.
- plan
Type String - Commitment plan type.
CommitmentQuotaResponse, CommitmentQuotaResponseArgs
HostingModel, HostingModelArgs
- Web
- Web
- Connected
Container - ConnectedContainer
- Disconnected
Container - DisconnectedContainer
- Provisioned
Web - ProvisionedWeb
- Hosting
Model Web - Web
- Hosting
Model Connected Container - ConnectedContainer
- Hosting
Model Disconnected Container - DisconnectedContainer
- Hosting
Model Provisioned Web - ProvisionedWeb
- Web
- Web
- Connected
Container - ConnectedContainer
- Disconnected
Container - DisconnectedContainer
- Provisioned
Web - ProvisionedWeb
- Web
- Web
- Connected
Container - ConnectedContainer
- Disconnected
Container - DisconnectedContainer
- Provisioned
Web - ProvisionedWeb
- WEB
- Web
- CONNECTED_CONTAINER
- ConnectedContainer
- DISCONNECTED_CONTAINER
- DisconnectedContainer
- PROVISIONED_WEB
- ProvisionedWeb
- "Web"
- Web
- "Connected
Container" - ConnectedContainer
- "Disconnected
Container" - DisconnectedContainer
- "Provisioned
Web" - ProvisionedWeb
Sku, SkuArgs
- Name
This property is required. string - The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
string | Pulumi.
Azure Native. Cognitive Services. Sku Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name
This property is required. string - The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
string | Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. String - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
String | Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. string - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
string | Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. str - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
str | Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. String - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String | "Free" | "Basic" | "Standard" | "Premium" | "Enterprise"
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuResponse, SkuResponseArgs
- Name
This property is required. string - The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name
This property is required. string - The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. String - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. string - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. str - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier str
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name
This property is required. String - The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuTier, SkuTierArgs
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Enterprise
- Enterprise
- Sku
Tier Free - Free
- Sku
Tier Basic - Basic
- Sku
Tier Standard - Standard
- Sku
Tier Premium - Premium
- Sku
Tier Enterprise - Enterprise
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Enterprise
- Enterprise
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Enterprise
- Enterprise
- FREE
- Free
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- ENTERPRISE
- Enterprise
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
- "Enterprise"
- Enterprise
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cognitiveservices:CommitmentPlan commitmentPlanName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/commitmentPlans/{commitmentPlanName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v2 pulumi/pulumi-azure-native
- License
- Apache-2.0