azure-native.agricultureplatform.AgriService
Explore with Pulumi AI
Schema of the AgriService resource from Microsoft.AgriculturePlatform resource provider.
Uses Azure REST API version 2024-06-01-preview.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:agricultureplatform:AgriService mnvxvlitiwbndijhbmgiejz /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AgriculturePlatform/agriServices/{agriServiceResourceName}
Create AgriService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AgriService(name: string, args: AgriServiceArgs, opts?: CustomResourceOptions);
@overload
def AgriService(resource_name: str,
args: AgriServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AgriService(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
agri_service_resource_name: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
location: Optional[str] = None,
properties: Optional[AgriServiceResourcePropertiesArgs] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAgriService(ctx *Context, name string, args AgriServiceArgs, opts ...ResourceOption) (*AgriService, error)
public AgriService(string name, AgriServiceArgs args, CustomResourceOptions? opts = null)
public AgriService(String name, AgriServiceArgs args)
public AgriService(String name, AgriServiceArgs args, CustomResourceOptions options)
type: azure-native:agricultureplatform:AgriService
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 AgriServiceArgs
- 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 AgriServiceArgs
- 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 AgriServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AgriServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AgriServiceArgs
- 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 agriServiceResource = new AzureNative.AgriculturePlatform.AgriService("agriServiceResource", new()
{
ResourceGroupName = "string",
AgriServiceResourceName = "string",
Identity = new AzureNative.AgriculturePlatform.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Location = "string",
Properties = new AzureNative.AgriculturePlatform.Inputs.AgriServiceResourcePropertiesArgs
{
DataConnectorCredentials = new[]
{
new AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentialMapArgs
{
Key = "string",
Value = new AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentialsArgs
{
ClientId = "string",
KeyName = "string",
KeyVaultUri = "string",
KeyVersion = "string",
Kind = "string",
},
},
},
InstalledSolutions = new[]
{
new AzureNative.AgriculturePlatform.Inputs.InstalledSolutionMapArgs
{
Key = "string",
Value = new AzureNative.AgriculturePlatform.Inputs.SolutionArgs
{
ApplicationName = "string",
MarketPlacePublisherId = "string",
PartnerId = "string",
PlanId = "string",
SaasSubscriptionId = "string",
SaasSubscriptionName = "string",
},
},
},
},
Sku = new AzureNative.AgriculturePlatform.Inputs.SkuArgs
{
Name = "string",
Capacity = 0,
Family = "string",
Size = "string",
Tier = AzureNative.AgriculturePlatform.SkuTier.Free,
},
Tags =
{
{ "string", "string" },
},
});
example, err := agricultureplatform.NewAgriService(ctx, "agriServiceResource", &agricultureplatform.AgriServiceArgs{
ResourceGroupName: pulumi.String("string"),
AgriServiceResourceName: pulumi.String("string"),
Identity: &agricultureplatform.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Properties: &agricultureplatform.AgriServiceResourcePropertiesArgs{
DataConnectorCredentials: agricultureplatform.DataConnectorCredentialMapArray{
&agricultureplatform.DataConnectorCredentialMapArgs{
Key: pulumi.String("string"),
Value: &agricultureplatform.DataConnectorCredentialsArgs{
ClientId: pulumi.String("string"),
KeyName: pulumi.String("string"),
KeyVaultUri: pulumi.String("string"),
KeyVersion: pulumi.String("string"),
Kind: pulumi.String("string"),
},
},
},
InstalledSolutions: agricultureplatform.InstalledSolutionMapArray{
&agricultureplatform.InstalledSolutionMapArgs{
Key: pulumi.String("string"),
Value: &agricultureplatform.SolutionArgs{
ApplicationName: pulumi.String("string"),
MarketPlacePublisherId: pulumi.String("string"),
PartnerId: pulumi.String("string"),
PlanId: pulumi.String("string"),
SaasSubscriptionId: pulumi.String("string"),
SaasSubscriptionName: pulumi.String("string"),
},
},
},
},
Sku: &agricultureplatform.SkuArgs{
Name: pulumi.String("string"),
Capacity: pulumi.Int(0),
Family: pulumi.String("string"),
Size: pulumi.String("string"),
Tier: agricultureplatform.SkuTierFree,
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var agriServiceResource = new AgriService("agriServiceResource", AgriServiceArgs.builder()
.resourceGroupName("string")
.agriServiceResourceName("string")
.identity(ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.location("string")
.properties(AgriServiceResourcePropertiesArgs.builder()
.dataConnectorCredentials(DataConnectorCredentialMapArgs.builder()
.key("string")
.value(DataConnectorCredentialsArgs.builder()
.clientId("string")
.keyName("string")
.keyVaultUri("string")
.keyVersion("string")
.kind("string")
.build())
.build())
.installedSolutions(InstalledSolutionMapArgs.builder()
.key("string")
.value(SolutionArgs.builder()
.applicationName("string")
.marketPlacePublisherId("string")
.partnerId("string")
.planId("string")
.saasSubscriptionId("string")
.saasSubscriptionName("string")
.build())
.build())
.build())
.sku(SkuArgs.builder()
.name("string")
.capacity(0)
.family("string")
.size("string")
.tier("Free")
.build())
.tags(Map.of("string", "string"))
.build());
agri_service_resource = azure_native.agricultureplatform.AgriService("agriServiceResource",
resource_group_name="string",
agri_service_resource_name="string",
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
location="string",
properties={
"data_connector_credentials": [{
"key": "string",
"value": {
"client_id": "string",
"key_name": "string",
"key_vault_uri": "string",
"key_version": "string",
"kind": "string",
},
}],
"installed_solutions": [{
"key": "string",
"value": {
"application_name": "string",
"market_place_publisher_id": "string",
"partner_id": "string",
"plan_id": "string",
"saas_subscription_id": "string",
"saas_subscription_name": "string",
},
}],
},
sku={
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": azure_native.agricultureplatform.SkuTier.FREE,
},
tags={
"string": "string",
})
const agriServiceResource = new azure_native.agricultureplatform.AgriService("agriServiceResource", {
resourceGroupName: "string",
agriServiceResourceName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
location: "string",
properties: {
dataConnectorCredentials: [{
key: "string",
value: {
clientId: "string",
keyName: "string",
keyVaultUri: "string",
keyVersion: "string",
kind: "string",
},
}],
installedSolutions: [{
key: "string",
value: {
applicationName: "string",
marketPlacePublisherId: "string",
partnerId: "string",
planId: "string",
saasSubscriptionId: "string",
saasSubscriptionName: "string",
},
}],
},
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: azure_native.agricultureplatform.SkuTier.Free,
},
tags: {
string: "string",
},
});
type: azure-native:agricultureplatform:AgriService
properties:
agriServiceResourceName: string
identity:
type: string
userAssignedIdentities:
- string
location: string
properties:
dataConnectorCredentials:
- key: string
value:
clientId: string
keyName: string
keyVaultUri: string
keyVersion: string
kind: string
installedSolutions:
- key: string
value:
applicationName: string
marketPlacePublisherId: string
partnerId: string
planId: string
saasSubscriptionId: string
saasSubscriptionName: string
resourceGroupName: string
sku:
capacity: 0
family: string
name: string
size: string
tier: Free
tags:
string: string
AgriService 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 AgriService resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Agri
Service stringResource Name - The name of the AgriService resource.
- Identity
Pulumi.
Azure Native. Agriculture Platform. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Agriculture Platform. Inputs. Agri Service Resource Properties - The resource-specific properties for this resource.
- Sku
Pulumi.
Azure Native. Agriculture Platform. Inputs. Sku - The SKU (Stock Keeping Unit) assigned to this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Agri
Service stringResource Name - The name of the AgriService resource.
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Agri
Service Resource Properties Args - The resource-specific properties for this resource.
- Sku
Sku
Args - The SKU (Stock Keeping Unit) assigned to this resource.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- agri
Service StringResource Name - The name of the AgriService resource.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- properties
Agri
Service Resource Properties - The resource-specific properties for this resource.
- sku Sku
- The SKU (Stock Keeping Unit) assigned to this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- agri
Service stringResource Name - The name of the AgriService resource.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- properties
Agri
Service Resource Properties - The resource-specific properties for this resource.
- sku Sku
- The SKU (Stock Keeping Unit) assigned to this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- agri_
service_ strresource_ name - The name of the AgriService resource.
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- properties
Agri
Service Resource Properties Args - The resource-specific properties for this resource.
- sku
Sku
Args - The SKU (Stock Keeping Unit) assigned to this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- agri
Service StringResource Name - The name of the AgriService resource.
- identity Property Map
- The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- properties Property Map
- The resource-specific properties for this resource.
- sku Property Map
- The SKU (Stock Keeping Unit) assigned to this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AgriService resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Agriculture Platform. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AgriServiceConfigResponse, AgriServiceConfigResponseArgs
- App
Service stringResource Id - App service resource Id.
- Cosmos
Db stringResource Id - Cosmos Db resource Id.
- Instance
Uri string - Instance URI of the AgriService instance.
- Key
Vault stringResource Id - Key vault resource Id.
- Redis
Cache stringResource Id - Redis cache resource Id.
- Storage
Account stringResource Id - Storage account resource Id.
- Version string
- Version of AgriService instance.
- App
Service stringResource Id - App service resource Id.
- Cosmos
Db stringResource Id - Cosmos Db resource Id.
- Instance
Uri string - Instance URI of the AgriService instance.
- Key
Vault stringResource Id - Key vault resource Id.
- Redis
Cache stringResource Id - Redis cache resource Id.
- Storage
Account stringResource Id - Storage account resource Id.
- Version string
- Version of AgriService instance.
- app
Service StringResource Id - App service resource Id.
- cosmos
Db StringResource Id - Cosmos Db resource Id.
- instance
Uri String - Instance URI of the AgriService instance.
- key
Vault StringResource Id - Key vault resource Id.
- redis
Cache StringResource Id - Redis cache resource Id.
- storage
Account StringResource Id - Storage account resource Id.
- version String
- Version of AgriService instance.
- app
Service stringResource Id - App service resource Id.
- cosmos
Db stringResource Id - Cosmos Db resource Id.
- instance
Uri string - Instance URI of the AgriService instance.
- key
Vault stringResource Id - Key vault resource Id.
- redis
Cache stringResource Id - Redis cache resource Id.
- storage
Account stringResource Id - Storage account resource Id.
- version string
- Version of AgriService instance.
- app_
service_ strresource_ id - App service resource Id.
- cosmos_
db_ strresource_ id - Cosmos Db resource Id.
- instance_
uri str - Instance URI of the AgriService instance.
- key_
vault_ strresource_ id - Key vault resource Id.
- redis_
cache_ strresource_ id - Redis cache resource Id.
- storage_
account_ strresource_ id - Storage account resource Id.
- version str
- Version of AgriService instance.
- app
Service StringResource Id - App service resource Id.
- cosmos
Db StringResource Id - Cosmos Db resource Id.
- instance
Uri String - Instance URI of the AgriService instance.
- key
Vault StringResource Id - Key vault resource Id.
- redis
Cache StringResource Id - Redis cache resource Id.
- storage
Account StringResource Id - Storage account resource Id.
- version String
- Version of AgriService instance.
AgriServiceResourceProperties, AgriServiceResourcePropertiesArgs
- Data
Connector List<Pulumi.Credentials Azure Native. Agriculture Platform. Inputs. Data Connector Credential Map> - Data connector credentials of AgriService instance.
- Installed
Solutions List<Pulumi.Azure Native. Agriculture Platform. Inputs. Installed Solution Map> - AgriService installed solutions.
- Data
Connector []DataCredentials Connector Credential Map - Data connector credentials of AgriService instance.
- Installed
Solutions []InstalledSolution Map - AgriService installed solutions.
- data
Connector List<DataCredentials Connector Credential Map> - Data connector credentials of AgriService instance.
- installed
Solutions List<InstalledSolution Map> - AgriService installed solutions.
- data
Connector DataCredentials Connector Credential Map[] - Data connector credentials of AgriService instance.
- installed
Solutions InstalledSolution Map[] - AgriService installed solutions.
- data_
connector_ Sequence[Datacredentials Connector Credential Map] - Data connector credentials of AgriService instance.
- installed_
solutions Sequence[InstalledSolution Map] - AgriService installed solutions.
- data
Connector List<Property Map>Credentials - Data connector credentials of AgriService instance.
- installed
Solutions List<Property Map> - AgriService installed solutions.
AgriServiceResourcePropertiesResponse, AgriServiceResourcePropertiesResponseArgs
- Managed
On Pulumi.Behalf Of Configuration Azure Native. Agriculture Platform. Inputs. Managed On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- Provisioning
State string - The status of the last operation.
- Config
Pulumi.
Azure Native. Agriculture Platform. Inputs. Agri Service Config Response - Config of the AgriService instance.
- Data
Connector List<Pulumi.Credentials Azure Native. Agriculture Platform. Inputs. Data Connector Credential Map Response> - Data connector credentials of AgriService instance.
- Installed
Solutions List<Pulumi.Azure Native. Agriculture Platform. Inputs. Installed Solution Map Response> - AgriService installed solutions.
- Managed
On ManagedBehalf Of Configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- Provisioning
State string - The status of the last operation.
- Config
Agri
Service Config Response - Config of the AgriService instance.
- Data
Connector []DataCredentials Connector Credential Map Response - Data connector credentials of AgriService instance.
- Installed
Solutions []InstalledSolution Map Response - AgriService installed solutions.
- managed
On ManagedBehalf Of Configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- provisioning
State String - The status of the last operation.
- config
Agri
Service Config Response - Config of the AgriService instance.
- data
Connector List<DataCredentials Connector Credential Map Response> - Data connector credentials of AgriService instance.
- installed
Solutions List<InstalledSolution Map Response> - AgriService installed solutions.
- managed
On ManagedBehalf Of Configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- provisioning
State string - The status of the last operation.
- config
Agri
Service Config Response - Config of the AgriService instance.
- data
Connector DataCredentials Connector Credential Map Response[] - Data connector credentials of AgriService instance.
- installed
Solutions InstalledSolution Map Response[] - AgriService installed solutions.
- managed_
on_ Managedbehalf_ of_ configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- provisioning_
state str - The status of the last operation.
- config
Agri
Service Config Response - Config of the AgriService instance.
- data_
connector_ Sequence[Datacredentials Connector Credential Map Response] - Data connector credentials of AgriService instance.
- installed_
solutions Sequence[InstalledSolution Map Response] - AgriService installed solutions.
- managed
On Property MapBehalf Of Configuration - Managed On Behalf Of Configuration.
- provisioning
State String - The status of the last operation.
- config Property Map
- Config of the AgriService instance.
- data
Connector List<Property Map>Credentials - Data connector credentials of AgriService instance.
- installed
Solutions List<Property Map> - AgriService installed solutions.
AuthCredentialsKind, AuthCredentialsKindArgs
- OAuth
Client Credentials - OAuthClientCredentialsOAuth Client Credential type
- Api
Key Auth Credentials - ApiKeyAuthCredentialsAPI Key Auth Credential type
- Auth
Credentials Kind OAuth Client Credentials - OAuthClientCredentialsOAuth Client Credential type
- Auth
Credentials Kind Api Key Auth Credentials - ApiKeyAuthCredentialsAPI Key Auth Credential type
- OAuth
Client Credentials - OAuthClientCredentialsOAuth Client Credential type
- Api
Key Auth Credentials - ApiKeyAuthCredentialsAPI Key Auth Credential type
- OAuth
Client Credentials - OAuthClientCredentialsOAuth Client Credential type
- Api
Key Auth Credentials - ApiKeyAuthCredentialsAPI Key Auth Credential type
- O_AUTH_CLIENT_CREDENTIALS
- OAuthClientCredentialsOAuth Client Credential type
- API_KEY_AUTH_CREDENTIALS
- ApiKeyAuthCredentialsAPI Key Auth Credential type
- "OAuth
Client Credentials" - OAuthClientCredentialsOAuth Client Credential type
- "Api
Key Auth Credentials" - ApiKeyAuthCredentialsAPI Key Auth Credential type
DataConnectorCredentialMap, DataConnectorCredentialMapArgs
- Key string
- The key representing the credential.
- Value
Pulumi.
Azure Native. Agriculture Platform. Inputs. Data Connector Credentials - The data connector credential value.
- Key string
- The key representing the credential.
- Value
Data
Connector Credentials - The data connector credential value.
- key String
- The key representing the credential.
- value
Data
Connector Credentials - The data connector credential value.
- key string
- The key representing the credential.
- value
Data
Connector Credentials - The data connector credential value.
- key str
- The key representing the credential.
- value
Data
Connector Credentials - The data connector credential value.
- key String
- The key representing the credential.
- value Property Map
- The data connector credential value.
DataConnectorCredentialMapResponse, DataConnectorCredentialMapResponseArgs
- Key string
- The key representing the credential.
- Value
Pulumi.
Azure Native. Agriculture Platform. Inputs. Data Connector Credentials Response - The data connector credential value.
- Key string
- The key representing the credential.
- Value
Data
Connector Credentials Response - The data connector credential value.
- key String
- The key representing the credential.
- value
Data
Connector Credentials Response - The data connector credential value.
- key string
- The key representing the credential.
- value
Data
Connector Credentials Response - The data connector credential value.
- key str
- The key representing the credential.
- value
Data
Connector Credentials Response - The data connector credential value.
- key String
- The key representing the credential.
- value Property Map
- The data connector credential value.
DataConnectorCredentials, DataConnectorCredentialsArgs
- Client
Id string - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- Key
Name string - Name of the key vault key.
- Key
Vault stringUri - Uri of the key vault
- Key
Version string - Version of the key vault key.
- Kind
string | Pulumi.
Azure Native. Agriculture Platform. Auth Credentials Kind - Type of credential.
- Client
Id string - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- Key
Name string - Name of the key vault key.
- Key
Vault stringUri - Uri of the key vault
- Key
Version string - Version of the key vault key.
- Kind
string | Auth
Credentials Kind - Type of credential.
- client
Id String - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key
Name String - Name of the key vault key.
- key
Vault StringUri - Uri of the key vault
- key
Version String - Version of the key vault key.
- kind
String | Auth
Credentials Kind - Type of credential.
- client
Id string - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key
Name string - Name of the key vault key.
- key
Vault stringUri - Uri of the key vault
- key
Version string - Version of the key vault key.
- kind
string | Auth
Credentials Kind - Type of credential.
- client_
id str - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key_
name str - Name of the key vault key.
- key_
vault_ struri - Uri of the key vault
- key_
version str - Version of the key vault key.
- kind
str | Auth
Credentials Kind - Type of credential.
- client
Id String - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key
Name String - Name of the key vault key.
- key
Vault StringUri - Uri of the key vault
- key
Version String - Version of the key vault key.
- kind
String | "OAuth
Client Credentials" | "Api Key Auth Credentials" - Type of credential.
DataConnectorCredentialsResponse, DataConnectorCredentialsResponseArgs
- Client
Id string - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- Key
Name string - Name of the key vault key.
- Key
Vault stringUri - Uri of the key vault
- Key
Version string - Version of the key vault key.
- Kind string
- Type of credential.
- Client
Id string - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- Key
Name string - Name of the key vault key.
- Key
Vault stringUri - Uri of the key vault
- Key
Version string - Version of the key vault key.
- Kind string
- Type of credential.
- client
Id String - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key
Name String - Name of the key vault key.
- key
Vault StringUri - Uri of the key vault
- key
Version String - Version of the key vault key.
- kind String
- Type of credential.
- client
Id string - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key
Name string - Name of the key vault key.
- key
Vault stringUri - Uri of the key vault
- key
Version string - Version of the key vault key.
- kind string
- Type of credential.
- client_
id str - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key_
name str - Name of the key vault key.
- key_
vault_ struri - Uri of the key vault
- key_
version str - Version of the key vault key.
- kind str
- Type of credential.
- client
Id String - Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
- key
Name String - Name of the key vault key.
- key
Vault StringUri - Uri of the key vault
- key
Version String - Version of the key vault key.
- kind String
- Type of credential.
InstalledSolutionMap, InstalledSolutionMapArgs
- Key string
- The key representing the installed solution.
- Value
Pulumi.
Azure Native. Agriculture Platform. Inputs. Solution - The installed solution value.
- key String
- The key representing the installed solution.
- value Property Map
- The installed solution value.
InstalledSolutionMapResponse, InstalledSolutionMapResponseArgs
- Key string
- The key representing the installed solution.
- Value
Pulumi.
Azure Native. Agriculture Platform. Inputs. Solution Response - The installed solution value.
- Key string
- The key representing the installed solution.
- Value
Solution
Response - The installed solution value.
- key String
- The key representing the installed solution.
- value
Solution
Response - The installed solution value.
- key string
- The key representing the installed solution.
- value
Solution
Response - The installed solution value.
- key str
- The key representing the installed solution.
- value
Solution
Response - The installed solution value.
- key String
- The key representing the installed solution.
- value Property Map
- The installed solution value.
ManagedOnBehalfOfConfigurationResponse, ManagedOnBehalfOfConfigurationResponseArgs
- Mobo
Broker List<Pulumi.Resources Azure Native. Agriculture Platform. Inputs. Mobo Broker Resource Response> - Associated MoboBrokerResources.
- Mobo
Broker []MoboResources Broker Resource Response - Associated MoboBrokerResources.
- mobo
Broker List<MoboResources Broker Resource Response> - Associated MoboBrokerResources.
- mobo
Broker MoboResources Broker Resource Response[] - Associated MoboBrokerResources.
- mobo_
broker_ Sequence[Moboresources Broker Resource Response] - Associated MoboBrokerResources.
- mobo
Broker List<Property Map>Resources - Associated MoboBrokerResources.
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Agriculture Platform. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Agriculture Platform. Inputs. User Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
MoboBrokerResourceResponse, MoboBrokerResourceResponseArgs
- Id string
- The fully qualified resource ID of the MoboBroker resource.
Example:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Id string
- The fully qualified resource ID of the MoboBroker resource.
Example:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- id String
- The fully qualified resource ID of the MoboBroker resource.
Example:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- id string
- The fully qualified resource ID of the MoboBroker resource.
Example:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- id str
- The fully qualified resource ID of the MoboBroker resource.
Example:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- id String
- The fully qualified resource ID of the MoboBroker resource.
Example:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Sku, SkuArgs
- Name string
- The name of the SKU. E.g. 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
Pulumi.
Azure Native. Agriculture Platform. 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 string
- The name of the SKU. E.g. 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
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 String
- The name of the SKU. E.g. 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
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 string
- The name of the SKU. E.g. 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
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 str
- The name of the SKU. E.g. 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
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 String
- The name of the SKU. E.g. 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 "Free" | "Basic" | "Standard" | "Premium"
- 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 string
- The name of the SKU. E.g. 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 string
- The name of the SKU. E.g. 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 String
- The name of the SKU. E.g. 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 string
- The name of the SKU. E.g. 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 str
- The name of the SKU. E.g. 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 String
- The name of the SKU. E.g. 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
- Sku
Tier Free - Free
- Sku
Tier Basic - Basic
- Sku
Tier Standard - Standard
- Sku
Tier Premium - Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- FREE
- Free
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
Solution, SolutionArgs
- Application
Name string - Application name of the solution.
- Market
Place stringPublisher Id - Marketplace publisher Id.
- Partner
Id string - Partner Id.
- Plan
Id string - Plan Id.
- Saas
Subscription stringId - Saas subscription Id.
- Saas
Subscription stringName - Saas subscription name.
- Application
Name string - Application name of the solution.
- Market
Place stringPublisher Id - Marketplace publisher Id.
- Partner
Id string - Partner Id.
- Plan
Id string - Plan Id.
- Saas
Subscription stringId - Saas subscription Id.
- Saas
Subscription stringName - Saas subscription name.
- application
Name String - Application name of the solution.
- market
Place StringPublisher Id - Marketplace publisher Id.
- partner
Id String - Partner Id.
- plan
Id String - Plan Id.
- saas
Subscription StringId - Saas subscription Id.
- saas
Subscription StringName - Saas subscription name.
- application
Name string - Application name of the solution.
- market
Place stringPublisher Id - Marketplace publisher Id.
- partner
Id string - Partner Id.
- plan
Id string - Plan Id.
- saas
Subscription stringId - Saas subscription Id.
- saas
Subscription stringName - Saas subscription name.
- application_
name str - Application name of the solution.
- market_
place_ strpublisher_ id - Marketplace publisher Id.
- partner_
id str - Partner Id.
- plan_
id str - Plan Id.
- saas_
subscription_ strid - Saas subscription Id.
- saas_
subscription_ strname - Saas subscription name.
- application
Name String - Application name of the solution.
- market
Place StringPublisher Id - Marketplace publisher Id.
- partner
Id String - Partner Id.
- plan
Id String - Plan Id.
- saas
Subscription StringId - Saas subscription Id.
- saas
Subscription StringName - Saas subscription name.
SolutionResponse, SolutionResponseArgs
- Application
Name string - Application name of the solution.
- Market
Place stringPublisher Id - Marketplace publisher Id.
- Partner
Id string - Partner Id.
- Plan
Id string - Plan Id.
- Saas
Subscription stringId - Saas subscription Id.
- Saas
Subscription stringName - Saas subscription name.
- Application
Name string - Application name of the solution.
- Market
Place stringPublisher Id - Marketplace publisher Id.
- Partner
Id string - Partner Id.
- Plan
Id string - Plan Id.
- Saas
Subscription stringId - Saas subscription Id.
- Saas
Subscription stringName - Saas subscription name.
- application
Name String - Application name of the solution.
- market
Place StringPublisher Id - Marketplace publisher Id.
- partner
Id String - Partner Id.
- plan
Id String - Plan Id.
- saas
Subscription StringId - Saas subscription Id.
- saas
Subscription StringName - Saas subscription name.
- application
Name string - Application name of the solution.
- market
Place stringPublisher Id - Marketplace publisher Id.
- partner
Id string - Partner Id.
- plan
Id string - Plan Id.
- saas
Subscription stringId - Saas subscription Id.
- saas
Subscription stringName - Saas subscription name.
- application_
name str - Application name of the solution.
- market_
place_ strpublisher_ id - Marketplace publisher Id.
- partner_
id str - Partner Id.
- plan_
id str - Plan Id.
- saas_
subscription_ strid - Saas subscription Id.
- saas_
subscription_ strname - Saas subscription name.
- application
Name String - Application name of the solution.
- market
Place StringPublisher Id - Marketplace publisher Id.
- partner
Id String - Partner Id.
- plan
Id String - Plan Id.
- saas
Subscription StringId - Saas subscription Id.
- saas
Subscription StringName - Saas subscription name.
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.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0