azure-native.providerhub.AuthorizedApplication
Explore with Pulumi AI
Uses Azure REST API version 2024-09-01.
Example Usage
AuthorizedApplications_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var authorizedApplication = new AzureNative.ProviderHub.AuthorizedApplication("authorizedApplication", new()
{
ApplicationId = "760505bf-dcfa-4311-b890-18da392a00b2",
Properties = new AzureNative.ProviderHub.Inputs.AuthorizedApplicationPropertiesArgs
{
DataAuthorizations = new[]
{
new AzureNative.ProviderHub.Inputs.ApplicationDataAuthorizationArgs
{
ResourceTypes = new[]
{
"*",
},
Role = AzureNative.ProviderHub.Role.ServiceOwner,
},
},
ProviderAuthorization = new AzureNative.ProviderHub.Inputs.ApplicationProviderAuthorizationArgs
{
ManagedByRoleDefinitionId = "1a3b5c7d-8e9f-10g1-1h12-i13j14k1",
RoleDefinitionId = "123456bf-gkur-2098-b890-98da392a00b2",
},
},
ProviderNamespace = "Microsoft.Contoso",
});
});
package main
import (
providerhub "github.com/pulumi/pulumi-azure-native-sdk/providerhub/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := providerhub.NewAuthorizedApplication(ctx, "authorizedApplication", &providerhub.AuthorizedApplicationArgs{
ApplicationId: pulumi.String("760505bf-dcfa-4311-b890-18da392a00b2"),
Properties: &providerhub.AuthorizedApplicationPropertiesArgs{
DataAuthorizations: providerhub.ApplicationDataAuthorizationArray{
&providerhub.ApplicationDataAuthorizationArgs{
ResourceTypes: pulumi.StringArray{
pulumi.String("*"),
},
Role: pulumi.String(providerhub.RoleServiceOwner),
},
},
ProviderAuthorization: &providerhub.ApplicationProviderAuthorizationArgs{
ManagedByRoleDefinitionId: pulumi.String("1a3b5c7d-8e9f-10g1-1h12-i13j14k1"),
RoleDefinitionId: pulumi.String("123456bf-gkur-2098-b890-98da392a00b2"),
},
},
ProviderNamespace: pulumi.String("Microsoft.Contoso"),
})
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.providerhub.AuthorizedApplication;
import com.pulumi.azurenative.providerhub.AuthorizedApplicationArgs;
import com.pulumi.azurenative.providerhub.inputs.AuthorizedApplicationPropertiesArgs;
import com.pulumi.azurenative.providerhub.inputs.ApplicationProviderAuthorizationArgs;
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 authorizedApplication = new AuthorizedApplication("authorizedApplication", AuthorizedApplicationArgs.builder()
.applicationId("760505bf-dcfa-4311-b890-18da392a00b2")
.properties(AuthorizedApplicationPropertiesArgs.builder()
.dataAuthorizations(ApplicationDataAuthorizationArgs.builder()
.resourceTypes("*")
.role("ServiceOwner")
.build())
.providerAuthorization(ApplicationProviderAuthorizationArgs.builder()
.managedByRoleDefinitionId("1a3b5c7d-8e9f-10g1-1h12-i13j14k1")
.roleDefinitionId("123456bf-gkur-2098-b890-98da392a00b2")
.build())
.build())
.providerNamespace("Microsoft.Contoso")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const authorizedApplication = new azure_native.providerhub.AuthorizedApplication("authorizedApplication", {
applicationId: "760505bf-dcfa-4311-b890-18da392a00b2",
properties: {
dataAuthorizations: [{
resourceTypes: ["*"],
role: azure_native.providerhub.Role.ServiceOwner,
}],
providerAuthorization: {
managedByRoleDefinitionId: "1a3b5c7d-8e9f-10g1-1h12-i13j14k1",
roleDefinitionId: "123456bf-gkur-2098-b890-98da392a00b2",
},
},
providerNamespace: "Microsoft.Contoso",
});
import pulumi
import pulumi_azure_native as azure_native
authorized_application = azure_native.providerhub.AuthorizedApplication("authorizedApplication",
application_id="760505bf-dcfa-4311-b890-18da392a00b2",
properties={
"data_authorizations": [{
"resource_types": ["*"],
"role": azure_native.providerhub.Role.SERVICE_OWNER,
}],
"provider_authorization": {
"managed_by_role_definition_id": "1a3b5c7d-8e9f-10g1-1h12-i13j14k1",
"role_definition_id": "123456bf-gkur-2098-b890-98da392a00b2",
},
},
provider_namespace="Microsoft.Contoso")
resources:
authorizedApplication:
type: azure-native:providerhub:AuthorizedApplication
properties:
applicationId: 760505bf-dcfa-4311-b890-18da392a00b2
properties:
dataAuthorizations:
- resourceTypes:
- '*'
role: ServiceOwner
providerAuthorization:
managedByRoleDefinitionId: 1a3b5c7d-8e9f-10g1-1h12-i13j14k1
roleDefinitionId: 123456bf-gkur-2098-b890-98da392a00b2
providerNamespace: Microsoft.Contoso
Create AuthorizedApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthorizedApplication(name: string, args: AuthorizedApplicationArgs, opts?: CustomResourceOptions);
@overload
def AuthorizedApplication(resource_name: str,
args: AuthorizedApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthorizedApplication(resource_name: str,
opts: Optional[ResourceOptions] = None,
provider_namespace: Optional[str] = None,
application_id: Optional[str] = None,
properties: Optional[AuthorizedApplicationPropertiesArgs] = None)
func NewAuthorizedApplication(ctx *Context, name string, args AuthorizedApplicationArgs, opts ...ResourceOption) (*AuthorizedApplication, error)
public AuthorizedApplication(string name, AuthorizedApplicationArgs args, CustomResourceOptions? opts = null)
public AuthorizedApplication(String name, AuthorizedApplicationArgs args)
public AuthorizedApplication(String name, AuthorizedApplicationArgs args, CustomResourceOptions options)
type: azure-native:providerhub:AuthorizedApplication
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 AuthorizedApplicationArgs
- 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 AuthorizedApplicationArgs
- 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 AuthorizedApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthorizedApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthorizedApplicationArgs
- 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 authorizedApplicationResource = new AzureNative.ProviderHub.AuthorizedApplication("authorizedApplicationResource", new()
{
ProviderNamespace = "string",
ApplicationId = "string",
Properties = new AzureNative.ProviderHub.Inputs.AuthorizedApplicationPropertiesArgs
{
DataAuthorizations = new[]
{
new AzureNative.ProviderHub.Inputs.ApplicationDataAuthorizationArgs
{
Role = "string",
ResourceTypes = new[]
{
"string",
},
},
},
ProviderAuthorization = new AzureNative.ProviderHub.Inputs.ApplicationProviderAuthorizationArgs
{
ManagedByRoleDefinitionId = "string",
RoleDefinitionId = "string",
},
},
});
example, err := providerhub.NewAuthorizedApplication(ctx, "authorizedApplicationResource", &providerhub.AuthorizedApplicationArgs{
ProviderNamespace: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
Properties: &providerhub.AuthorizedApplicationPropertiesArgs{
DataAuthorizations: providerhub.ApplicationDataAuthorizationArray{
&providerhub.ApplicationDataAuthorizationArgs{
Role: pulumi.String("string"),
ResourceTypes: pulumi.StringArray{
pulumi.String("string"),
},
},
},
ProviderAuthorization: &providerhub.ApplicationProviderAuthorizationArgs{
ManagedByRoleDefinitionId: pulumi.String("string"),
RoleDefinitionId: pulumi.String("string"),
},
},
})
var authorizedApplicationResource = new AuthorizedApplication("authorizedApplicationResource", AuthorizedApplicationArgs.builder()
.providerNamespace("string")
.applicationId("string")
.properties(AuthorizedApplicationPropertiesArgs.builder()
.dataAuthorizations(ApplicationDataAuthorizationArgs.builder()
.role("string")
.resourceTypes("string")
.build())
.providerAuthorization(ApplicationProviderAuthorizationArgs.builder()
.managedByRoleDefinitionId("string")
.roleDefinitionId("string")
.build())
.build())
.build());
authorized_application_resource = azure_native.providerhub.AuthorizedApplication("authorizedApplicationResource",
provider_namespace="string",
application_id="string",
properties={
"data_authorizations": [{
"role": "string",
"resource_types": ["string"],
}],
"provider_authorization": {
"managed_by_role_definition_id": "string",
"role_definition_id": "string",
},
})
const authorizedApplicationResource = new azure_native.providerhub.AuthorizedApplication("authorizedApplicationResource", {
providerNamespace: "string",
applicationId: "string",
properties: {
dataAuthorizations: [{
role: "string",
resourceTypes: ["string"],
}],
providerAuthorization: {
managedByRoleDefinitionId: "string",
roleDefinitionId: "string",
},
},
});
type: azure-native:providerhub:AuthorizedApplication
properties:
applicationId: string
properties:
dataAuthorizations:
- resourceTypes:
- string
role: string
providerAuthorization:
managedByRoleDefinitionId: string
roleDefinitionId: string
providerNamespace: string
AuthorizedApplication 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 AuthorizedApplication resource accepts the following input properties:
- Provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- Application
Id string - The application ID.
- Properties
Pulumi.
Azure Native. Provider Hub. Inputs. Authorized Application Properties
- Provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- Application
Id string - The application ID.
- Properties
Authorized
Application Properties Args
- provider
Namespace String - The name of the resource provider hosted within ProviderHub.
- application
Id String - The application ID.
- properties
Authorized
Application Properties
- provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- application
Id string - The application ID.
- properties
Authorized
Application Properties
- provider_
namespace str - The name of the resource provider hosted within ProviderHub.
- application_
id str - The application ID.
- properties
Authorized
Application Properties Args
- provider
Namespace String - The name of the resource provider hosted within ProviderHub.
- application
Id String - The application ID.
- properties Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthorizedApplication resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Provider Hub. 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- 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
ApplicationDataAuthorization, ApplicationDataAuthorizationArgs
- Role
string | Pulumi.
Azure Native. Provider Hub. Role - The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- Resource
Types List<string> - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- Role string | Role
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- Resource
Types []string - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role String | Role
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource
Types List<String> - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role string | Role
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource
Types string[] - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role str | Role
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource_
types Sequence[str] - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role
String | "Service
Owner" | "Limited Owner" - The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource
Types List<String> - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
ApplicationDataAuthorizationResponse, ApplicationDataAuthorizationResponseArgs
- Role string
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- Resource
Types List<string> - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- Role string
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- Resource
Types []string - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role String
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource
Types List<String> - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role string
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource
Types string[] - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role str
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource_
types Sequence[str] - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
- role String
- The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
- resource
Types List<String> - The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
ApplicationProviderAuthorization, ApplicationProviderAuthorizationArgs
- Managed
By stringRole Definition Id - The managed by role definition ID for the application.
- Role
Definition stringId - The role definition ID for the application.
- Managed
By stringRole Definition Id - The managed by role definition ID for the application.
- Role
Definition stringId - The role definition ID for the application.
- managed
By StringRole Definition Id - The managed by role definition ID for the application.
- role
Definition StringId - The role definition ID for the application.
- managed
By stringRole Definition Id - The managed by role definition ID for the application.
- role
Definition stringId - The role definition ID for the application.
- managed_
by_ strrole_ definition_ id - The managed by role definition ID for the application.
- role_
definition_ strid - The role definition ID for the application.
- managed
By StringRole Definition Id - The managed by role definition ID for the application.
- role
Definition StringId - The role definition ID for the application.
ApplicationProviderAuthorizationResponse, ApplicationProviderAuthorizationResponseArgs
- Managed
By stringRole Definition Id - The managed by role definition ID for the application.
- Role
Definition stringId - The role definition ID for the application.
- Managed
By stringRole Definition Id - The managed by role definition ID for the application.
- Role
Definition stringId - The role definition ID for the application.
- managed
By StringRole Definition Id - The managed by role definition ID for the application.
- role
Definition StringId - The role definition ID for the application.
- managed
By stringRole Definition Id - The managed by role definition ID for the application.
- role
Definition stringId - The role definition ID for the application.
- managed_
by_ strrole_ definition_ id - The managed by role definition ID for the application.
- role_
definition_ strid - The role definition ID for the application.
- managed
By StringRole Definition Id - The managed by role definition ID for the application.
- role
Definition StringId - The role definition ID for the application.
AuthorizedApplicationProperties, AuthorizedApplicationPropertiesArgs
- List<Pulumi.
Azure Native. Provider Hub. Inputs. Application Data Authorization> - The authorizations that determine the level of data access permissions on the specified resource types.
- Pulumi.
Azure Native. Provider Hub. Inputs. Application Provider Authorization
- []Application
Data Authorization - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization
- List<Application
Data Authorization> - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization
- Application
Data Authorization[] - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization
- Sequence[Application
Data Authorization] - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization
- List<Property Map>
- The authorizations that determine the level of data access permissions on the specified resource types.
- Property Map
AuthorizedApplicationPropertiesResponse, AuthorizedApplicationPropertiesResponseArgs
- Provisioning
State string - The provisioning state.
- List<Pulumi.
Azure Native. Provider Hub. Inputs. Application Data Authorization Response> - The authorizations that determine the level of data access permissions on the specified resource types.
- Pulumi.
Azure Native. Provider Hub. Inputs. Application Provider Authorization Response
- Provisioning
State string - The provisioning state.
- []Application
Data Authorization Response - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization Response
- provisioning
State String - The provisioning state.
- List<Application
Data Authorization Response> - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization Response
- provisioning
State string - The provisioning state.
- Application
Data Authorization Response[] - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization Response
- provisioning_
state str - The provisioning state.
- Sequence[Application
Data Authorization Response] - The authorizations that determine the level of data access permissions on the specified resource types.
- Application
Provider Authorization Response
- provisioning
State String - The provisioning state.
- List<Property Map>
- The authorizations that determine the level of data access permissions on the specified resource types.
- Property Map
Role, RoleArgs
- Service
Owner - ServiceOwner
- Limited
Owner - LimitedOwner
- Role
Service Owner - ServiceOwner
- Role
Limited Owner - LimitedOwner
- Service
Owner - ServiceOwner
- Limited
Owner - LimitedOwner
- Service
Owner - ServiceOwner
- Limited
Owner - LimitedOwner
- SERVICE_OWNER
- ServiceOwner
- LIMITED_OWNER
- LimitedOwner
- "Service
Owner" - ServiceOwner
- "Limited
Owner" - LimitedOwner
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:providerhub:AuthorizedApplication Microsoft.Contoso/760505bf-dcfa-4311-b890-18da392a00b2 /subscriptions/{subscriptionId}/providers/Microsoft.ProviderHub/providerRegistrations/{providerNamespace}/authorizedApplications/{applicationId}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0