This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi
azure-native.scom.Instance
Explore with Pulumi AI
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi
A SCOM instance resource Azure REST API version: 2023-07-07-preview.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:scom:Instance myInstace /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Scom/managedInstances/{instanceName}
Create Instance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
@overload
def Instance(resource_name: str,
args: InstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Instance(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
identity: Optional[ManagedIdentityArgs] = None,
instance_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[MonitoringInstancePropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None,
validation_mode: Optional[bool] = None)
func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
public Instance(String name, InstanceArgs args)
public Instance(String name, InstanceArgs args, CustomResourceOptions options)
type: azure-native:scom:Instance
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 InstanceArgs
- 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 InstanceArgs
- 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 InstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceArgs
- 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 exampleinstanceResourceResourceFromScom = new AzureNative.Scom.Instance("exampleinstanceResourceResourceFromScom", new()
{
ResourceGroupName = "string",
Identity = new AzureNative.Scom.Inputs.ManagedIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
InstanceName = "string",
Location = "string",
Properties = new AzureNative.Scom.Inputs.MonitoringInstancePropertiesArgs
{
AzureHybridBenefit = new AzureNative.Scom.Inputs.AzureHybridBenefitPropertiesArgs
{
ScomLicenseType = "string",
SqlServerLicenseType = "string",
WindowsServerLicenseType = "string",
},
DatabaseInstance = new AzureNative.Scom.Inputs.DatabaseInstancePropertiesArgs
{
DatabaseInstanceId = "string",
},
DomainController = new AzureNative.Scom.Inputs.DomainControllerPropertiesArgs
{
DnsServer = "string",
DomainName = "string",
OuPath = "string",
},
DomainUserCredentials = new AzureNative.Scom.Inputs.DomainUserCredentialsArgs
{
KeyVaultUrl = "string",
PasswordSecret = "string",
UserNameSecret = "string",
},
GmsaDetails = new AzureNative.Scom.Inputs.GmsaDetailsArgs
{
DnsName = "string",
GmsaAccount = "string",
LoadBalancerIP = "string",
ManagementServerGroupName = "string",
},
VNetSubnetId = "string",
},
Tags =
{
{ "string", "string" },
},
ValidationMode = false,
});
example, err := scom.NewInstance(ctx, "exampleinstanceResourceResourceFromScom", &scom.InstanceArgs{
ResourceGroupName: pulumi.String("string"),
Identity: &scom.ManagedIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
InstanceName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &scom.MonitoringInstancePropertiesArgs{
AzureHybridBenefit: &scom.AzureHybridBenefitPropertiesArgs{
ScomLicenseType: pulumi.String("string"),
SqlServerLicenseType: pulumi.String("string"),
WindowsServerLicenseType: pulumi.String("string"),
},
DatabaseInstance: &scom.DatabaseInstancePropertiesArgs{
DatabaseInstanceId: pulumi.String("string"),
},
DomainController: &scom.DomainControllerPropertiesArgs{
DnsServer: pulumi.String("string"),
DomainName: pulumi.String("string"),
OuPath: pulumi.String("string"),
},
DomainUserCredentials: &scom.DomainUserCredentialsArgs{
KeyVaultUrl: pulumi.String("string"),
PasswordSecret: pulumi.String("string"),
UserNameSecret: pulumi.String("string"),
},
GmsaDetails: &scom.GmsaDetailsArgs{
DnsName: pulumi.String("string"),
GmsaAccount: pulumi.String("string"),
LoadBalancerIP: pulumi.String("string"),
ManagementServerGroupName: pulumi.String("string"),
},
VNetSubnetId: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ValidationMode: pulumi.Bool(false),
})
var exampleinstanceResourceResourceFromScom = new Instance("exampleinstanceResourceResourceFromScom", InstanceArgs.builder()
.resourceGroupName("string")
.identity(ManagedIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.instanceName("string")
.location("string")
.properties(MonitoringInstancePropertiesArgs.builder()
.azureHybridBenefit(AzureHybridBenefitPropertiesArgs.builder()
.scomLicenseType("string")
.sqlServerLicenseType("string")
.windowsServerLicenseType("string")
.build())
.databaseInstance(DatabaseInstancePropertiesArgs.builder()
.databaseInstanceId("string")
.build())
.domainController(DomainControllerPropertiesArgs.builder()
.dnsServer("string")
.domainName("string")
.ouPath("string")
.build())
.domainUserCredentials(DomainUserCredentialsArgs.builder()
.keyVaultUrl("string")
.passwordSecret("string")
.userNameSecret("string")
.build())
.gmsaDetails(GmsaDetailsArgs.builder()
.dnsName("string")
.gmsaAccount("string")
.loadBalancerIP("string")
.managementServerGroupName("string")
.build())
.vNetSubnetId("string")
.build())
.tags(Map.of("string", "string"))
.validationMode(false)
.build());
exampleinstance_resource_resource_from_scom = azure_native.scom.Instance("exampleinstanceResourceResourceFromScom",
resource_group_name="string",
identity={
"type": "string",
"userAssignedIdentities": ["string"],
},
instance_name="string",
location="string",
properties={
"azureHybridBenefit": {
"scomLicenseType": "string",
"sqlServerLicenseType": "string",
"windowsServerLicenseType": "string",
},
"databaseInstance": {
"databaseInstanceId": "string",
},
"domainController": {
"dnsServer": "string",
"domainName": "string",
"ouPath": "string",
},
"domainUserCredentials": {
"keyVaultUrl": "string",
"passwordSecret": "string",
"userNameSecret": "string",
},
"gmsaDetails": {
"dnsName": "string",
"gmsaAccount": "string",
"loadBalancerIP": "string",
"managementServerGroupName": "string",
},
"vNetSubnetId": "string",
},
tags={
"string": "string",
},
validation_mode=False)
const exampleinstanceResourceResourceFromScom = new azure_native.scom.Instance("exampleinstanceResourceResourceFromScom", {
resourceGroupName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
instanceName: "string",
location: "string",
properties: {
azureHybridBenefit: {
scomLicenseType: "string",
sqlServerLicenseType: "string",
windowsServerLicenseType: "string",
},
databaseInstance: {
databaseInstanceId: "string",
},
domainController: {
dnsServer: "string",
domainName: "string",
ouPath: "string",
},
domainUserCredentials: {
keyVaultUrl: "string",
passwordSecret: "string",
userNameSecret: "string",
},
gmsaDetails: {
dnsName: "string",
gmsaAccount: "string",
loadBalancerIP: "string",
managementServerGroupName: "string",
},
vNetSubnetId: "string",
},
tags: {
string: "string",
},
validationMode: false,
});
type: azure-native:scom:Instance
properties:
identity:
type: string
userAssignedIdentities:
- string
instanceName: string
location: string
properties:
azureHybridBenefit:
scomLicenseType: string
sqlServerLicenseType: string
windowsServerLicenseType: string
databaseInstance:
databaseInstanceId: string
domainController:
dnsServer: string
domainName: string
ouPath: string
domainUserCredentials:
keyVaultUrl: string
passwordSecret: string
userNameSecret: string
gmsaDetails:
dnsName: string
gmsaAccount: string
loadBalancerIP: string
managementServerGroupName: string
vNetSubnetId: string
resourceGroupName: string
tags:
string: string
validationMode: false
Instance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Instance resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Pulumi.
Azure Native. Scom. Inputs. Managed Identity - The Azure Active Directory identity of the SCOM instance
- Instance
Name string - Name of the Azure Monitor Operations Manager Managed Instance (SCOM MI)
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Scom. Inputs. Monitoring Instance Properties - The properties of a SCOM instance resource
- Dictionary<string, string>
- Resource tags.
- Validation
Mode bool - Validation mode for the SCOM managed instance
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Managed
Identity Args - The Azure Active Directory identity of the SCOM instance
- Instance
Name string - Name of the Azure Monitor Operations Manager Managed Instance (SCOM MI)
- Location string
- The geo-location where the resource lives
- Properties
Monitoring
Instance Properties Args - The properties of a SCOM instance resource
- map[string]string
- Resource tags.
- Validation
Mode bool - Validation mode for the SCOM managed instance
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Identity - The Azure Active Directory identity of the SCOM instance
- instance
Name String - Name of the Azure Monitor Operations Manager Managed Instance (SCOM MI)
- location String
- The geo-location where the resource lives
- properties
Monitoring
Instance Properties - The properties of a SCOM instance resource
- Map<String,String>
- Resource tags.
- validation
Mode Boolean - Validation mode for the SCOM managed instance
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Identity - The Azure Active Directory identity of the SCOM instance
- instance
Name string - Name of the Azure Monitor Operations Manager Managed Instance (SCOM MI)
- location string
- The geo-location where the resource lives
- properties
Monitoring
Instance Properties - The properties of a SCOM instance resource
- {[key: string]: string}
- Resource tags.
- validation
Mode boolean - Validation mode for the SCOM managed instance
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- identity
Managed
Identity Args - The Azure Active Directory identity of the SCOM instance
- instance_
name str - Name of the Azure Monitor Operations Manager Managed Instance (SCOM MI)
- location str
- The geo-location where the resource lives
- properties
Monitoring
Instance Properties Args - The properties of a SCOM instance resource
- Mapping[str, str]
- Resource tags.
- validation_
mode bool - Validation mode for the SCOM managed instance
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity Property Map
- The Azure Active Directory identity of the SCOM instance
- instance
Name String - Name of the Azure Monitor Operations Manager Managed Instance (SCOM MI)
- location String
- The geo-location where the resource lives
- properties Property Map
- The properties of a SCOM instance resource
- Map<String>
- Resource tags.
- validation
Mode Boolean - Validation mode for the SCOM managed instance
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance 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. Scom. 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
AzureHybridBenefitProperties, AzureHybridBenefitPropertiesArgs
- Scom
License string | Pulumi.Type Azure Native. Scom. Hybrid License Type - SCOM license type. Maximize savings by using license you already own
- Sql
Server string | Pulumi.License Type Azure Native. Scom. Hybrid License Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- Windows
Server string | Pulumi.License Type Azure Native. Scom. Hybrid License Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- Scom
License string | HybridType License Type - SCOM license type. Maximize savings by using license you already own
- Sql
Server string | HybridLicense Type License Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- Windows
Server string | HybridLicense Type License Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom
License String | HybridType License Type - SCOM license type. Maximize savings by using license you already own
- sql
Server String | HybridLicense Type License Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows
Server String | HybridLicense Type License Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom
License string | HybridType License Type - SCOM license type. Maximize savings by using license you already own
- sql
Server string | HybridLicense Type License Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows
Server string | HybridLicense Type License Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom_
license_ str | Hybridtype License Type - SCOM license type. Maximize savings by using license you already own
- sql_
server_ str | Hybridlicense_ type License Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows_
server_ str | Hybridlicense_ type License Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom
License String | "None" | "AzureType Hybrid Benefit" - SCOM license type. Maximize savings by using license you already own
- sql
Server String | "None" | "AzureLicense Type Hybrid Benefit" - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows
Server String | "None" | "AzureLicense Type Hybrid Benefit" - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
AzureHybridBenefitPropertiesResponse, AzureHybridBenefitPropertiesResponseArgs
- Scom
License stringType - SCOM license type. Maximize savings by using license you already own
- Sql
Server stringLicense Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- Windows
Server stringLicense Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- Scom
License stringType - SCOM license type. Maximize savings by using license you already own
- Sql
Server stringLicense Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- Windows
Server stringLicense Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom
License StringType - SCOM license type. Maximize savings by using license you already own
- sql
Server StringLicense Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows
Server StringLicense Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom
License stringType - SCOM license type. Maximize savings by using license you already own
- sql
Server stringLicense Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows
Server stringLicense Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom_
license_ strtype - SCOM license type. Maximize savings by using license you already own
- sql_
server_ strlicense_ type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows_
server_ strlicense_ type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
- scom
License StringType - SCOM license type. Maximize savings by using license you already own
- sql
Server StringLicense Type - SQL Server license type. Maximize savings by using Azure Hybrid Benefit for SQL Server with license you already own
- windows
Server StringLicense Type - Specifies that the image or disk that is being used was licensed on-premises. For more information, see Azure Hybrid Use Benefit for Windows Server
DatabaseInstanceProperties, DatabaseInstancePropertiesArgs
- Database
Instance stringId - Resource Id of existing database instance
- Database
Instance stringId - Resource Id of existing database instance
- database
Instance StringId - Resource Id of existing database instance
- database
Instance stringId - Resource Id of existing database instance
- database_
instance_ strid - Resource Id of existing database instance
- database
Instance StringId - Resource Id of existing database instance
DatabaseInstancePropertiesResponse, DatabaseInstancePropertiesResponseArgs
- Database
Fqdn string - Fully qualified domain name of existing database instance
- Dw
Database stringId - Resource Id of warehouse database on database instance
- Dw
Database stringName - Name of warehouse database on database instance
- Operational
Database stringId - Resource Id of operational database on database instance
- Database
Instance stringId - Resource Id of existing database instance
- Database
Fqdn string - Fully qualified domain name of existing database instance
- Dw
Database stringId - Resource Id of warehouse database on database instance
- Dw
Database stringName - Name of warehouse database on database instance
- Operational
Database stringId - Resource Id of operational database on database instance
- Database
Instance stringId - Resource Id of existing database instance
- database
Fqdn String - Fully qualified domain name of existing database instance
- dw
Database StringId - Resource Id of warehouse database on database instance
- dw
Database StringName - Name of warehouse database on database instance
- operational
Database StringId - Resource Id of operational database on database instance
- database
Instance StringId - Resource Id of existing database instance
- database
Fqdn string - Fully qualified domain name of existing database instance
- dw
Database stringId - Resource Id of warehouse database on database instance
- dw
Database stringName - Name of warehouse database on database instance
- operational
Database stringId - Resource Id of operational database on database instance
- database
Instance stringId - Resource Id of existing database instance
- database_
fqdn str - Fully qualified domain name of existing database instance
- dw_
database_ strid - Resource Id of warehouse database on database instance
- dw_
database_ strname - Name of warehouse database on database instance
- operational_
database_ strid - Resource Id of operational database on database instance
- database_
instance_ strid - Resource Id of existing database instance
- database
Fqdn String - Fully qualified domain name of existing database instance
- dw
Database StringId - Resource Id of warehouse database on database instance
- dw
Database StringName - Name of warehouse database on database instance
- operational
Database StringId - Resource Id of operational database on database instance
- database
Instance StringId - Resource Id of existing database instance
DomainControllerProperties, DomainControllerPropertiesArgs
- Dns
Server string - IP address of DNS server
- Domain
Name string - Fully qualified domain name
- Ou
Path string - Organizational Unit path in which the SCOM servers will be present
- Dns
Server string - IP address of DNS server
- Domain
Name string - Fully qualified domain name
- Ou
Path string - Organizational Unit path in which the SCOM servers will be present
- dns
Server String - IP address of DNS server
- domain
Name String - Fully qualified domain name
- ou
Path String - Organizational Unit path in which the SCOM servers will be present
- dns
Server string - IP address of DNS server
- domain
Name string - Fully qualified domain name
- ou
Path string - Organizational Unit path in which the SCOM servers will be present
- dns_
server str - IP address of DNS server
- domain_
name str - Fully qualified domain name
- ou_
path str - Organizational Unit path in which the SCOM servers will be present
- dns
Server String - IP address of DNS server
- domain
Name String - Fully qualified domain name
- ou
Path String - Organizational Unit path in which the SCOM servers will be present
DomainControllerPropertiesResponse, DomainControllerPropertiesResponseArgs
- Dns
Server string - IP address of DNS server
- Domain
Name string - Fully qualified domain name
- Ou
Path string - Organizational Unit path in which the SCOM servers will be present
- Dns
Server string - IP address of DNS server
- Domain
Name string - Fully qualified domain name
- Ou
Path string - Organizational Unit path in which the SCOM servers will be present
- dns
Server String - IP address of DNS server
- domain
Name String - Fully qualified domain name
- ou
Path String - Organizational Unit path in which the SCOM servers will be present
- dns
Server string - IP address of DNS server
- domain
Name string - Fully qualified domain name
- ou
Path string - Organizational Unit path in which the SCOM servers will be present
- dns_
server str - IP address of DNS server
- domain_
name str - Fully qualified domain name
- ou_
path str - Organizational Unit path in which the SCOM servers will be present
- dns
Server String - IP address of DNS server
- domain
Name String - Fully qualified domain name
- ou
Path String - Organizational Unit path in which the SCOM servers will be present
DomainUserCredentials, DomainUserCredentialsArgs
- Key
Vault stringUrl - Key vault url to get the domain username and password
- Password
Secret string - Domain Password secret
- User
Name stringSecret - Domain user name secret
- Key
Vault stringUrl - Key vault url to get the domain username and password
- Password
Secret string - Domain Password secret
- User
Name stringSecret - Domain user name secret
- key
Vault StringUrl - Key vault url to get the domain username and password
- password
Secret String - Domain Password secret
- user
Name StringSecret - Domain user name secret
- key
Vault stringUrl - Key vault url to get the domain username and password
- password
Secret string - Domain Password secret
- user
Name stringSecret - Domain user name secret
- key_
vault_ strurl - Key vault url to get the domain username and password
- password_
secret str - Domain Password secret
- user_
name_ strsecret - Domain user name secret
- key
Vault StringUrl - Key vault url to get the domain username and password
- password
Secret String - Domain Password secret
- user
Name StringSecret - Domain user name secret
DomainUserCredentialsResponse, DomainUserCredentialsResponseArgs
- Key
Vault stringUrl - Key vault url to get the domain username and password
- Password
Secret string - Domain Password secret
- User
Name stringSecret - Domain user name secret
- Key
Vault stringUrl - Key vault url to get the domain username and password
- Password
Secret string - Domain Password secret
- User
Name stringSecret - Domain user name secret
- key
Vault StringUrl - Key vault url to get the domain username and password
- password
Secret String - Domain Password secret
- user
Name StringSecret - Domain user name secret
- key
Vault stringUrl - Key vault url to get the domain username and password
- password
Secret string - Domain Password secret
- user
Name stringSecret - Domain user name secret
- key_
vault_ strurl - Key vault url to get the domain username and password
- password_
secret str - Domain Password secret
- user_
name_ strsecret - Domain user name secret
- key
Vault StringUrl - Key vault url to get the domain username and password
- password
Secret String - Domain Password secret
- user
Name StringSecret - Domain user name secret
GmsaDetails, GmsaDetailsArgs
- Dns
Name string - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- Gmsa
Account string - gMSA account under which context all Management Server services will run
- Load
Balancer stringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- Management
Server stringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- Dns
Name string - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- Gmsa
Account string - gMSA account under which context all Management Server services will run
- Load
Balancer stringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- Management
Server stringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns
Name String - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa
Account String - gMSA account under which context all Management Server services will run
- load
Balancer StringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management
Server StringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns
Name string - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa
Account string - gMSA account under which context all Management Server services will run
- load
Balancer stringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management
Server stringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns_
name str - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa_
account str - gMSA account under which context all Management Server services will run
- load_
balancer_ strip - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management_
server_ strgroup_ name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns
Name String - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa
Account String - gMSA account under which context all Management Server services will run
- load
Balancer StringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management
Server StringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
GmsaDetailsResponse, GmsaDetailsResponseArgs
- Dns
Name string - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- Gmsa
Account string - gMSA account under which context all Management Server services will run
- Load
Balancer stringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- Management
Server stringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- Dns
Name string - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- Gmsa
Account string - gMSA account under which context all Management Server services will run
- Load
Balancer stringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- Management
Server stringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns
Name String - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa
Account String - gMSA account under which context all Management Server services will run
- load
Balancer StringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management
Server StringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns
Name string - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa
Account string - gMSA account under which context all Management Server services will run
- load
Balancer stringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management
Server stringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns_
name str - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa_
account str - gMSA account under which context all Management Server services will run
- load_
balancer_ strip - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management_
server_ strgroup_ name - OnPrem AD Computer Group where we will join VMs for ease of management
- dns
Name String - Frontend DNS name for Load Balancer which will be used by Agents to initiate communication
- gmsa
Account String - gMSA account under which context all Management Server services will run
- load
Balancer StringIP - Frontend IP configuration for Load Balancer, which should be an available IP in customer VNet
- management
Server StringGroup Name - OnPrem AD Computer Group where we will join VMs for ease of management
HybridLicenseType, HybridLicenseTypeArgs
- None
- None
- Azure
Hybrid Benefit - AzureHybridBenefit
- Hybrid
License Type None - None
- Hybrid
License Type Azure Hybrid Benefit - AzureHybridBenefit
- None
- None
- Azure
Hybrid Benefit - AzureHybridBenefit
- None
- None
- Azure
Hybrid Benefit - AzureHybridBenefit
- NONE
- None
- AZURE_HYBRID_BENEFIT
- AzureHybridBenefit
- "None"
- None
- "Azure
Hybrid Benefit" - AzureHybridBenefit
LogAnalyticsConfigurationResponse, LogAnalyticsConfigurationResponseArgs
- Data
Types List<string> - The types of data to be ingested to Log Analytics workspace.
- Import
Data bool - A one-time optional parameter to import data of last 7 days.
- Workspace
Id string - The resource ID of the Log Analytics workspace to be used.
- Data
Types []string - The types of data to be ingested to Log Analytics workspace.
- Import
Data bool - A one-time optional parameter to import data of last 7 days.
- Workspace
Id string - The resource ID of the Log Analytics workspace to be used.
- data
Types List<String> - The types of data to be ingested to Log Analytics workspace.
- import
Data Boolean - A one-time optional parameter to import data of last 7 days.
- workspace
Id String - The resource ID of the Log Analytics workspace to be used.
- data
Types string[] - The types of data to be ingested to Log Analytics workspace.
- import
Data boolean - A one-time optional parameter to import data of last 7 days.
- workspace
Id string - The resource ID of the Log Analytics workspace to be used.
- data_
types Sequence[str] - The types of data to be ingested to Log Analytics workspace.
- import_
data bool - A one-time optional parameter to import data of last 7 days.
- workspace_
id str - The resource ID of the Log Analytics workspace to be used.
- data
Types List<String> - The types of data to be ingested to Log Analytics workspace.
- import
Data Boolean - A one-time optional parameter to import data of last 7 days.
- workspace
Id String - The resource ID of the Log Analytics workspace to be used.
ManagedIdentity, ManagedIdentityArgs
- Type
string | Pulumi.
Azure Native. Scom. Managed Identity Type - The identity type
- User
Assigned List<string>Identities - The resource ids of the user assigned identities to use
- Type
string | Managed
Identity Type - The identity type
- User
Assigned []stringIdentities - The resource ids of the user assigned identities to use
- type
String | Managed
Identity Type - The identity type
- user
Assigned List<String>Identities - The resource ids of the user assigned identities to use
- type
string | Managed
Identity Type - The identity type
- user
Assigned string[]Identities - The resource ids of the user assigned identities to use
- type
str | Managed
Identity Type - The identity type
- user_
assigned_ Sequence[str]identities - The resource ids of the user assigned identities to use
- type
String | "None" | "User
Assigned" | "System Assigned" | "System Assigned,User Assigned" - The identity type
- user
Assigned List<String>Identities - The resource ids of the user assigned identities to use
ManagedIdentityResponse, ManagedIdentityResponseArgs
- Principal
Id string - System Assigned Identity ObjectId.
- Tenant
Id string - The Azure Active Directory tenant id.
- Type string
- The identity type
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Scom. Inputs. User Identity Response> - The resource ids of the user assigned identities to use
- Principal
Id string - System Assigned Identity ObjectId.
- Tenant
Id string - The Azure Active Directory tenant id.
- Type string
- The identity type
- User
Assigned map[string]UserIdentities Identity Response - The resource ids of the user assigned identities to use
- principal
Id String - System Assigned Identity ObjectId.
- tenant
Id String - The Azure Active Directory tenant id.
- type String
- The identity type
- user
Assigned Map<String,UserIdentities Identity Response> - The resource ids of the user assigned identities to use
- principal
Id string - System Assigned Identity ObjectId.
- tenant
Id string - The Azure Active Directory tenant id.
- type string
- The identity type
- user
Assigned {[key: string]: UserIdentities Identity Response} - The resource ids of the user assigned identities to use
- principal_
id str - System Assigned Identity ObjectId.
- tenant_
id str - The Azure Active Directory tenant id.
- type str
- The identity type
- user_
assigned_ Mapping[str, Useridentities Identity Response] - The resource ids of the user assigned identities to use
- principal
Id String - System Assigned Identity ObjectId.
- tenant
Id String - The Azure Active Directory tenant id.
- type String
- The identity type
- user
Assigned Map<Property Map>Identities - The resource ids of the user assigned identities to use
ManagedIdentityType, ManagedIdentityTypeArgs
- None
- None
- User
Assigned - UserAssigned
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Identity Type None - None
- Managed
Identity Type User Assigned - UserAssigned
- Managed
Identity Type System Assigned - SystemAssigned
- Managed
Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- User
Assigned - UserAssigned
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- User
Assigned - UserAssigned
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "User
Assigned" - UserAssigned
- "System
Assigned" - SystemAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
ManagedInstanceOperationStatusResponse, ManagedInstanceOperationStatusResponseArgs
- Id string
- Operation id
- Operation
Name string - Operation Name
- Operation
State string - Operation status
- Id string
- Operation id
- Operation
Name string - Operation Name
- Operation
State string - Operation status
- id String
- Operation id
- operation
Name String - Operation Name
- operation
State String - Operation status
- id string
- Operation id
- operation
Name string - Operation Name
- operation
State string - Operation status
- id str
- Operation id
- operation_
name str - Operation Name
- operation_
state str - Operation status
- id String
- Operation id
- operation
Name String - Operation Name
- operation
State String - Operation status
ManagementServerPropertiesResponse, ManagementServerPropertiesResponseArgs
- Fqdn string
- Management server Fully Qualified Domain Name.
- Health
State string - Management server health state.
- Server
Name string - Management server Name
- Server
Roles string - Represent whether the Server is a Management Server and/or Web Console Server.
- Vm
Res stringId - Azure VM Resource Id of the Management server.
- Fqdn string
- Management server Fully Qualified Domain Name.
- Health
State string - Management server health state.
- Server
Name string - Management server Name
- Server
Roles string - Represent whether the Server is a Management Server and/or Web Console Server.
- Vm
Res stringId - Azure VM Resource Id of the Management server.
- fqdn String
- Management server Fully Qualified Domain Name.
- health
State String - Management server health state.
- server
Name String - Management server Name
- server
Roles String - Represent whether the Server is a Management Server and/or Web Console Server.
- vm
Res StringId - Azure VM Resource Id of the Management server.
- fqdn string
- Management server Fully Qualified Domain Name.
- health
State string - Management server health state.
- server
Name string - Management server Name
- server
Roles string - Represent whether the Server is a Management Server and/or Web Console Server.
- vm
Res stringId - Azure VM Resource Id of the Management server.
- fqdn str
- Management server Fully Qualified Domain Name.
- health_
state str - Management server health state.
- server_
name str - Management server Name
- server_
roles str - Represent whether the Server is a Management Server and/or Web Console Server.
- vm_
res_ strid - Azure VM Resource Id of the Management server.
- fqdn String
- Management server Fully Qualified Domain Name.
- health
State String - Management server health state.
- server
Name String - Management server Name
- server
Roles String - Represent whether the Server is a Management Server and/or Web Console Server.
- vm
Res StringId - Azure VM Resource Id of the Management server.
MonitoringInstanceProperties, MonitoringInstancePropertiesArgs
- Azure
Hybrid Pulumi.Benefit Azure Native. Scom. Inputs. Azure Hybrid Benefit Properties - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- Database
Instance Pulumi.Azure Native. Scom. Inputs. Database Instance Properties - The database instance where the SCOM Operational and Warehouse databases will be stored.
- Domain
Controller Pulumi.Azure Native. Scom. Inputs. Domain Controller Properties - Domain controller details
- Domain
User Pulumi.Credentials Azure Native. Scom. Inputs. Domain User Credentials - Domain user which will be used to join VMs to domain and login to VMs.
- Gmsa
Details Pulumi.Azure Native. Scom. Inputs. Gmsa Details - Gmsa Details for load balancer and vmss
- VNet
Subnet stringId - Virtual Network subnet id on which Aquila instance will be provisioned
- Azure
Hybrid AzureBenefit Hybrid Benefit Properties - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- Database
Instance DatabaseInstance Properties - The database instance where the SCOM Operational and Warehouse databases will be stored.
- Domain
Controller DomainController Properties - Domain controller details
- Domain
User DomainCredentials User Credentials - Domain user which will be used to join VMs to domain and login to VMs.
- Gmsa
Details GmsaDetails - Gmsa Details for load balancer and vmss
- VNet
Subnet stringId - Virtual Network subnet id on which Aquila instance will be provisioned
- azure
Hybrid AzureBenefit Hybrid Benefit Properties - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database
Instance DatabaseInstance Properties - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain
Controller DomainController Properties - Domain controller details
- domain
User DomainCredentials User Credentials - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa
Details GmsaDetails - Gmsa Details for load balancer and vmss
- v
Net StringSubnet Id - Virtual Network subnet id on which Aquila instance will be provisioned
- azure
Hybrid AzureBenefit Hybrid Benefit Properties - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database
Instance DatabaseInstance Properties - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain
Controller DomainController Properties - Domain controller details
- domain
User DomainCredentials User Credentials - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa
Details GmsaDetails - Gmsa Details for load balancer and vmss
- v
Net stringSubnet Id - Virtual Network subnet id on which Aquila instance will be provisioned
- azure_
hybrid_ Azurebenefit Hybrid Benefit Properties - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database_
instance DatabaseInstance Properties - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain_
controller DomainController Properties - Domain controller details
- domain_
user_ Domaincredentials User Credentials - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa_
details GmsaDetails - Gmsa Details for load balancer and vmss
- v_
net_ strsubnet_ id - Virtual Network subnet id on which Aquila instance will be provisioned
- azure
Hybrid Property MapBenefit - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database
Instance Property Map - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain
Controller Property Map - Domain controller details
- domain
User Property MapCredentials - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa
Details Property Map - Gmsa Details for load balancer and vmss
- v
Net StringSubnet Id - Virtual Network subnet id on which Aquila instance will be provisioned
MonitoringInstancePropertiesResponse, MonitoringInstancePropertiesResponseArgs
- Log
Analytics Pulumi.Properties Azure Native. Scom. Inputs. Log Analytics Configuration Response - Details of Log Analytics workspace and data being ingested.
- Management
Endpoints List<Pulumi.Azure Native. Scom. Inputs. Management Server Properties Response> - List of management server endpoints
- Operations
Status List<Pulumi.Azure Native. Scom. Inputs. Managed Instance Operation Status Response> - Gets status of current and latest SCOM managed instance operations.
- Product
Version string - SCOM product version to be installed on instance
- Provisioning
State string - Gets or sets the provisioning state.
- Azure
Hybrid Pulumi.Benefit Azure Native. Scom. Inputs. Azure Hybrid Benefit Properties Response - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- Database
Instance Pulumi.Azure Native. Scom. Inputs. Database Instance Properties Response - The database instance where the SCOM Operational and Warehouse databases will be stored.
- Domain
Controller Pulumi.Azure Native. Scom. Inputs. Domain Controller Properties Response - Domain controller details
- Domain
User Pulumi.Credentials Azure Native. Scom. Inputs. Domain User Credentials Response - Domain user which will be used to join VMs to domain and login to VMs.
- Gmsa
Details Pulumi.Azure Native. Scom. Inputs. Gmsa Details Response - Gmsa Details for load balancer and vmss
- VNet
Subnet stringId - Virtual Network subnet id on which Aquila instance will be provisioned
- Log
Analytics LogProperties Analytics Configuration Response - Details of Log Analytics workspace and data being ingested.
- Management
Endpoints []ManagementServer Properties Response - List of management server endpoints
- Operations
Status []ManagedInstance Operation Status Response - Gets status of current and latest SCOM managed instance operations.
- Product
Version string - SCOM product version to be installed on instance
- Provisioning
State string - Gets or sets the provisioning state.
- Azure
Hybrid AzureBenefit Hybrid Benefit Properties Response - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- Database
Instance DatabaseInstance Properties Response - The database instance where the SCOM Operational and Warehouse databases will be stored.
- Domain
Controller DomainController Properties Response - Domain controller details
- Domain
User DomainCredentials User Credentials Response - Domain user which will be used to join VMs to domain and login to VMs.
- Gmsa
Details GmsaDetails Response - Gmsa Details for load balancer and vmss
- VNet
Subnet stringId - Virtual Network subnet id on which Aquila instance will be provisioned
- log
Analytics LogProperties Analytics Configuration Response - Details of Log Analytics workspace and data being ingested.
- management
Endpoints List<ManagementServer Properties Response> - List of management server endpoints
- operations
Status List<ManagedInstance Operation Status Response> - Gets status of current and latest SCOM managed instance operations.
- product
Version String - SCOM product version to be installed on instance
- provisioning
State String - Gets or sets the provisioning state.
- azure
Hybrid AzureBenefit Hybrid Benefit Properties Response - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database
Instance DatabaseInstance Properties Response - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain
Controller DomainController Properties Response - Domain controller details
- domain
User DomainCredentials User Credentials Response - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa
Details GmsaDetails Response - Gmsa Details for load balancer and vmss
- v
Net StringSubnet Id - Virtual Network subnet id on which Aquila instance will be provisioned
- log
Analytics LogProperties Analytics Configuration Response - Details of Log Analytics workspace and data being ingested.
- management
Endpoints ManagementServer Properties Response[] - List of management server endpoints
- operations
Status ManagedInstance Operation Status Response[] - Gets status of current and latest SCOM managed instance operations.
- product
Version string - SCOM product version to be installed on instance
- provisioning
State string - Gets or sets the provisioning state.
- azure
Hybrid AzureBenefit Hybrid Benefit Properties Response - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database
Instance DatabaseInstance Properties Response - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain
Controller DomainController Properties Response - Domain controller details
- domain
User DomainCredentials User Credentials Response - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa
Details GmsaDetails Response - Gmsa Details for load balancer and vmss
- v
Net stringSubnet Id - Virtual Network subnet id on which Aquila instance will be provisioned
- log_
analytics_ Logproperties Analytics Configuration Response - Details of Log Analytics workspace and data being ingested.
- management_
endpoints Sequence[ManagementServer Properties Response] - List of management server endpoints
- operations_
status Sequence[ManagedInstance Operation Status Response] - Gets status of current and latest SCOM managed instance operations.
- product_
version str - SCOM product version to be installed on instance
- provisioning_
state str - Gets or sets the provisioning state.
- azure_
hybrid_ Azurebenefit Hybrid Benefit Properties Response - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database_
instance DatabaseInstance Properties Response - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain_
controller DomainController Properties Response - Domain controller details
- domain_
user_ Domaincredentials User Credentials Response - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa_
details GmsaDetails Response - Gmsa Details for load balancer and vmss
- v_
net_ strsubnet_ id - Virtual Network subnet id on which Aquila instance will be provisioned
- log
Analytics Property MapProperties - Details of Log Analytics workspace and data being ingested.
- management
Endpoints List<Property Map> - List of management server endpoints
- operations
Status List<Property Map> - Gets status of current and latest SCOM managed instance operations.
- product
Version String - SCOM product version to be installed on instance
- provisioning
State String - Gets or sets the provisioning state.
- azure
Hybrid Property MapBenefit - The properties to enable Azure Hybrid benefit for various SCOM infrastructure license.
- database
Instance Property Map - The database instance where the SCOM Operational and Warehouse databases will be stored.
- domain
Controller Property Map - Domain controller details
- domain
User Property MapCredentials - Domain user which will be used to join VMs to domain and login to VMs.
- gmsa
Details Property Map - Gmsa Details for load balancer and vmss
- v
Net StringSubnet Id - Virtual Network subnet id on which Aquila instance will be provisioned
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.
UserIdentityResponse, UserIdentityResponseArgs
- Client
Id string - The Azure Active Directory client id.
- Principal
Id string - The Azure Active Directory principal id.
- Client
Id string - The Azure Active Directory client id.
- Principal
Id string - The Azure Active Directory principal id.
- client
Id String - The Azure Active Directory client id.
- principal
Id String - The Azure Active Directory principal id.
- client
Id string - The Azure Active Directory client id.
- principal
Id string - The Azure Active Directory principal id.
- client_
id str - The Azure Active Directory client id.
- principal_
id str - The Azure Active Directory principal id.
- client
Id String - The Azure Active Directory client id.
- principal
Id String - The Azure Active Directory principal id.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi