azure-native.billing.AssociatedTenant
Explore with Pulumi AI
An associated tenant. Azure REST API version: 2024-04-01.
Example Usage
AssociatedTenantsCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var associatedTenant = new AzureNative.Billing.AssociatedTenant("associatedTenant", new()
{
AssociatedTenantName = "11111111-1111-1111-1111-111111111111",
BillingAccountName = "00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
Properties = new AzureNative.Billing.Inputs.AssociatedTenantPropertiesArgs
{
BillingManagementState = AzureNative.Billing.BillingManagementTenantState.Active,
DisplayName = "Contoso Finance",
ProvisioningManagementState = AzureNative.Billing.ProvisioningTenantState.Pending,
},
});
});
package main
import (
billing "github.com/pulumi/pulumi-azure-native-sdk/billing/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := billing.NewAssociatedTenant(ctx, "associatedTenant", &billing.AssociatedTenantArgs{
AssociatedTenantName: pulumi.String("11111111-1111-1111-1111-111111111111"),
BillingAccountName: pulumi.String("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31"),
Properties: &billing.AssociatedTenantPropertiesArgs{
BillingManagementState: pulumi.String(billing.BillingManagementTenantStateActive),
DisplayName: pulumi.String("Contoso Finance"),
ProvisioningManagementState: pulumi.String(billing.ProvisioningTenantStatePending),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.billing.AssociatedTenant;
import com.pulumi.azurenative.billing.AssociatedTenantArgs;
import com.pulumi.azurenative.billing.inputs.AssociatedTenantPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var associatedTenant = new AssociatedTenant("associatedTenant", AssociatedTenantArgs.builder()
.associatedTenantName("11111111-1111-1111-1111-111111111111")
.billingAccountName("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31")
.properties(AssociatedTenantPropertiesArgs.builder()
.billingManagementState("Active")
.displayName("Contoso Finance")
.provisioningManagementState("Pending")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
associated_tenant = azure_native.billing.AssociatedTenant("associatedTenant",
associated_tenant_name="11111111-1111-1111-1111-111111111111",
billing_account_name="00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
properties={
"billing_management_state": azure_native.billing.BillingManagementTenantState.ACTIVE,
"display_name": "Contoso Finance",
"provisioning_management_state": azure_native.billing.ProvisioningTenantState.PENDING,
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const associatedTenant = new azure_native.billing.AssociatedTenant("associatedTenant", {
associatedTenantName: "11111111-1111-1111-1111-111111111111",
billingAccountName: "00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
properties: {
billingManagementState: azure_native.billing.BillingManagementTenantState.Active,
displayName: "Contoso Finance",
provisioningManagementState: azure_native.billing.ProvisioningTenantState.Pending,
},
});
resources:
associatedTenant:
type: azure-native:billing:AssociatedTenant
properties:
associatedTenantName: 11111111-1111-1111-1111-111111111111
billingAccountName: 00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31
properties:
billingManagementState: Active
displayName: Contoso Finance
provisioningManagementState: Pending
Create AssociatedTenant Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AssociatedTenant(name: string, args: AssociatedTenantArgs, opts?: CustomResourceOptions);
@overload
def AssociatedTenant(resource_name: str,
args: AssociatedTenantArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AssociatedTenant(resource_name: str,
opts: Optional[ResourceOptions] = None,
billing_account_name: Optional[str] = None,
associated_tenant_name: Optional[str] = None,
properties: Optional[AssociatedTenantPropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAssociatedTenant(ctx *Context, name string, args AssociatedTenantArgs, opts ...ResourceOption) (*AssociatedTenant, error)
public AssociatedTenant(string name, AssociatedTenantArgs args, CustomResourceOptions? opts = null)
public AssociatedTenant(String name, AssociatedTenantArgs args)
public AssociatedTenant(String name, AssociatedTenantArgs args, CustomResourceOptions options)
type: azure-native:billing:AssociatedTenant
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 AssociatedTenantArgs
- 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 AssociatedTenantArgs
- 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 AssociatedTenantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AssociatedTenantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AssociatedTenantArgs
- 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 associatedTenantResource = new AzureNative.Billing.AssociatedTenant("associatedTenantResource", new()
{
BillingAccountName = "string",
AssociatedTenantName = "string",
Properties = new AzureNative.Billing.Inputs.AssociatedTenantPropertiesArgs
{
BillingManagementState = "string",
DisplayName = "string",
ProvisioningManagementState = "string",
TenantId = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := billing.NewAssociatedTenant(ctx, "associatedTenantResource", &billing.AssociatedTenantArgs{
BillingAccountName: pulumi.String("string"),
AssociatedTenantName: pulumi.String("string"),
Properties: &billing.AssociatedTenantPropertiesArgs{
BillingManagementState: pulumi.String("string"),
DisplayName: pulumi.String("string"),
ProvisioningManagementState: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var associatedTenantResource = new AssociatedTenant("associatedTenantResource", AssociatedTenantArgs.builder()
.billingAccountName("string")
.associatedTenantName("string")
.properties(AssociatedTenantPropertiesArgs.builder()
.billingManagementState("string")
.displayName("string")
.provisioningManagementState("string")
.tenantId("string")
.build())
.tags(Map.of("string", "string"))
.build());
associated_tenant_resource = azure_native.billing.AssociatedTenant("associatedTenantResource",
billing_account_name="string",
associated_tenant_name="string",
properties={
"billing_management_state": "string",
"display_name": "string",
"provisioning_management_state": "string",
"tenant_id": "string",
},
tags={
"string": "string",
})
const associatedTenantResource = new azure_native.billing.AssociatedTenant("associatedTenantResource", {
billingAccountName: "string",
associatedTenantName: "string",
properties: {
billingManagementState: "string",
displayName: "string",
provisioningManagementState: "string",
tenantId: "string",
},
tags: {
string: "string",
},
});
type: azure-native:billing:AssociatedTenant
properties:
associatedTenantName: string
billingAccountName: string
properties:
billingManagementState: string
displayName: string
provisioningManagementState: string
tenantId: string
tags:
string: string
AssociatedTenant 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 AssociatedTenant resource accepts the following input properties:
- Billing
Account stringName - The ID that uniquely identifies a billing account.
- Associated
Tenant stringName - The ID that uniquely identifies a tenant.
- Properties
Pulumi.
Azure Native. Billing. Inputs. Associated Tenant Properties - An associated tenant.
- Dictionary<string, string>
- Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
- Billing
Account stringName - The ID that uniquely identifies a billing account.
- Associated
Tenant stringName - The ID that uniquely identifies a tenant.
- Properties
Associated
Tenant Properties Args - An associated tenant.
- map[string]string
- Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
- billing
Account StringName - The ID that uniquely identifies a billing account.
- associated
Tenant StringName - The ID that uniquely identifies a tenant.
- properties
Associated
Tenant Properties - An associated tenant.
- Map<String,String>
- Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
- billing
Account stringName - The ID that uniquely identifies a billing account.
- associated
Tenant stringName - The ID that uniquely identifies a tenant.
- properties
Associated
Tenant Properties - An associated tenant.
- {[key: string]: string}
- Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
- billing_
account_ strname - The ID that uniquely identifies a billing account.
- associated_
tenant_ strname - The ID that uniquely identifies a tenant.
- properties
Associated
Tenant Properties Args - An associated tenant.
- Mapping[str, str]
- Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
- billing
Account StringName - The ID that uniquely identifies a billing account.
- associated
Tenant StringName - The ID that uniquely identifies a tenant.
- properties Property Map
- An associated tenant.
- Map<String>
- Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
Outputs
All input properties are implicitly available as output properties. Additionally, the AssociatedTenant 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. Billing. 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
AssociatedTenantProperties, AssociatedTenantPropertiesArgs
- Billing
Management string | Pulumi.State Azure Native. Billing. Billing Management Tenant State - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- Display
Name string - The name of the associated tenant.
- Provisioning
Management string | Pulumi.State Azure Native. Billing. Provisioning Tenant State - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- Tenant
Id string - The ID that uniquely identifies a tenant.
- Billing
Management string | BillingState Management Tenant State - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- Display
Name string - The name of the associated tenant.
- Provisioning
Management string | ProvisioningState Tenant State - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- Tenant
Id string - The ID that uniquely identifies a tenant.
- billing
Management String | BillingState Management Tenant State - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display
Name String - The name of the associated tenant.
- provisioning
Management String | ProvisioningState Tenant State - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant
Id String - The ID that uniquely identifies a tenant.
- billing
Management string | BillingState Management Tenant State - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display
Name string - The name of the associated tenant.
- provisioning
Management string | ProvisioningState Tenant State - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant
Id string - The ID that uniquely identifies a tenant.
- billing_
management_ str | Billingstate Management Tenant State - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display_
name str - The name of the associated tenant.
- provisioning_
management_ str | Provisioningstate Tenant State - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant_
id str - The ID that uniquely identifies a tenant.
- billing
Management String | "Other" | "NotState Allowed" | "Active" | "Revoked" - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display
Name String - The name of the associated tenant.
- provisioning
Management String | "Other" | "NotState Requested" | "Active" | "Pending" | "Billing Request Expired" | "Billing Request Declined" | "Revoked" - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant
Id String - The ID that uniquely identifies a tenant.
AssociatedTenantPropertiesResponse, AssociatedTenantPropertiesResponseArgs
- Provisioning
Billing stringRequest Id - The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
- Provisioning
State string - The provisioning state of the resource during a long-running operation.
- Billing
Management stringState - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- Display
Name string - The name of the associated tenant.
- Provisioning
Management stringState - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- Tenant
Id string - The ID that uniquely identifies a tenant.
- Provisioning
Billing stringRequest Id - The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
- Provisioning
State string - The provisioning state of the resource during a long-running operation.
- Billing
Management stringState - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- Display
Name string - The name of the associated tenant.
- Provisioning
Management stringState - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- Tenant
Id string - The ID that uniquely identifies a tenant.
- provisioning
Billing StringRequest Id - The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
- provisioning
State String - The provisioning state of the resource during a long-running operation.
- billing
Management StringState - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display
Name String - The name of the associated tenant.
- provisioning
Management StringState - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant
Id String - The ID that uniquely identifies a tenant.
- provisioning
Billing stringRequest Id - The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
- provisioning
State string - The provisioning state of the resource during a long-running operation.
- billing
Management stringState - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display
Name string - The name of the associated tenant.
- provisioning
Management stringState - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant
Id string - The ID that uniquely identifies a tenant.
- provisioning_
billing_ strrequest_ id - The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
- provisioning_
state str - The provisioning state of the resource during a long-running operation.
- billing_
management_ strstate - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display_
name str - The name of the associated tenant.
- provisioning_
management_ strstate - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant_
id str - The ID that uniquely identifies a tenant.
- provisioning
Billing StringRequest Id - The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
- provisioning
State String - The provisioning state of the resource during a long-running operation.
- billing
Management StringState - The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
- display
Name String - The name of the associated tenant.
- provisioning
Management StringState - The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
- tenant
Id String - The ID that uniquely identifies a tenant.
BillingManagementTenantState, BillingManagementTenantStateArgs
- Other
- Other
- Not
Allowed - NotAllowed
- Active
- Active
- Revoked
- Revoked
- Billing
Management Tenant State Other - Other
- Billing
Management Tenant State Not Allowed - NotAllowed
- Billing
Management Tenant State Active - Active
- Billing
Management Tenant State Revoked - Revoked
- Other
- Other
- Not
Allowed - NotAllowed
- Active
- Active
- Revoked
- Revoked
- Other
- Other
- Not
Allowed - NotAllowed
- Active
- Active
- Revoked
- Revoked
- OTHER
- Other
- NOT_ALLOWED
- NotAllowed
- ACTIVE
- Active
- REVOKED
- Revoked
- "Other"
- Other
- "Not
Allowed" - NotAllowed
- "Active"
- Active
- "Revoked"
- Revoked
ProvisioningTenantState, ProvisioningTenantStateArgs
- Other
- Other
- Not
Requested - NotRequested
- Active
- Active
- Pending
- Pending
- Billing
Request Expired - BillingRequestExpired
- Billing
Request Declined - BillingRequestDeclined
- Revoked
- Revoked
- Provisioning
Tenant State Other - Other
- Provisioning
Tenant State Not Requested - NotRequested
- Provisioning
Tenant State Active - Active
- Provisioning
Tenant State Pending - Pending
- Provisioning
Tenant State Billing Request Expired - BillingRequestExpired
- Provisioning
Tenant State Billing Request Declined - BillingRequestDeclined
- Provisioning
Tenant State Revoked - Revoked
- Other
- Other
- Not
Requested - NotRequested
- Active
- Active
- Pending
- Pending
- Billing
Request Expired - BillingRequestExpired
- Billing
Request Declined - BillingRequestDeclined
- Revoked
- Revoked
- Other
- Other
- Not
Requested - NotRequested
- Active
- Active
- Pending
- Pending
- Billing
Request Expired - BillingRequestExpired
- Billing
Request Declined - BillingRequestDeclined
- Revoked
- Revoked
- OTHER
- Other
- NOT_REQUESTED
- NotRequested
- ACTIVE
- Active
- PENDING
- Pending
- BILLING_REQUEST_EXPIRED
- BillingRequestExpired
- BILLING_REQUEST_DECLINED
- BillingRequestDeclined
- REVOKED
- Revoked
- "Other"
- Other
- "Not
Requested" - NotRequested
- "Active"
- Active
- "Pending"
- Pending
- "Billing
Request Expired" - BillingRequestExpired
- "Billing
Request Declined" - BillingRequestDeclined
- "Revoked"
- Revoked
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:billing:AssociatedTenant 11111111-1111-1111-1111-111111111111 /providers/Microsoft.Billing/billingAccounts/{billingAccountName}/associatedTenants/{associatedTenantName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0