published on Wednesday, Jul 29, 2026 by Pulumi
published on Wednesday, Jul 29, 2026 by Pulumi
Source control configuration for an app.
Uses Azure REST API version 2025-05-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
Other available API versions: 2016-08-01, 2018-02-01, 2018-11-01, 2019-08-01, 2020-06-01, 2020-09-01, 2020-10-01, 2020-12-01, 2021-01-01, 2021-01-15, 2021-02-01, 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-04-01, 2024-11-01, 2025-03-01, 2026-03-01-preview, 2026-03-15. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native web [ApiVersion]. See the version guide for details.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:web:WebAppSourceControl myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/sourcecontrols/web
Create WebAppSourceControl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WebAppSourceControl(name: string, args: WebAppSourceControlArgs, opts?: CustomResourceOptions);@overload
def WebAppSourceControl(resource_name: str,
args: WebAppSourceControlArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WebAppSourceControl(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
branch: Optional[str] = None,
deployment_rollback_enabled: Optional[bool] = None,
git_hub_action_configuration: Optional[GitHubActionConfigurationArgs] = None,
is_git_hub_action: Optional[bool] = None,
is_manual_integration: Optional[bool] = None,
is_mercurial: Optional[bool] = None,
kind: Optional[str] = None,
repo_url: Optional[str] = None)func NewWebAppSourceControl(ctx *Context, name string, args WebAppSourceControlArgs, opts ...ResourceOption) (*WebAppSourceControl, error)public WebAppSourceControl(string name, WebAppSourceControlArgs args, CustomResourceOptions? opts = null)
public WebAppSourceControl(String name, WebAppSourceControlArgs args)
public WebAppSourceControl(String name, WebAppSourceControlArgs args, CustomResourceOptions options)
type: azure-native:web:WebAppSourceControl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_web_web_app_source_control" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args WebAppSourceControlArgs
- 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 WebAppSourceControlArgs
- 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 WebAppSourceControlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WebAppSourceControlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WebAppSourceControlArgs
- 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 webAppSourceControlResource = new AzureNative.Web.WebAppSourceControl("webAppSourceControlResource", new()
{
Name = "string",
ResourceGroupName = "string",
Branch = "string",
DeploymentRollbackEnabled = false,
GitHubActionConfiguration = new AzureNative.Web.Inputs.GitHubActionConfigurationArgs
{
CodeConfiguration = new AzureNative.Web.Inputs.GitHubActionCodeConfigurationArgs
{
RuntimeStack = "string",
RuntimeVersion = "string",
},
ContainerConfiguration = new AzureNative.Web.Inputs.GitHubActionContainerConfigurationArgs
{
ImageName = "string",
Password = "string",
ServerUrl = "string",
Username = "string",
},
GenerateWorkflowFile = false,
IsLinux = false,
},
IsGitHubAction = false,
IsManualIntegration = false,
IsMercurial = false,
Kind = "string",
RepoUrl = "string",
});
example, err := web.NewWebAppSourceControl(ctx, "webAppSourceControlResource", &web.WebAppSourceControlArgs{
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Branch: pulumi.String("string"),
DeploymentRollbackEnabled: pulumi.Bool(false),
GitHubActionConfiguration: &web.GitHubActionConfigurationArgs{
CodeConfiguration: &web.GitHubActionCodeConfigurationArgs{
RuntimeStack: pulumi.String("string"),
RuntimeVersion: pulumi.String("string"),
},
ContainerConfiguration: &web.GitHubActionContainerConfigurationArgs{
ImageName: pulumi.String("string"),
Password: pulumi.String("string"),
ServerUrl: pulumi.String("string"),
Username: pulumi.String("string"),
},
GenerateWorkflowFile: pulumi.Bool(false),
IsLinux: pulumi.Bool(false),
},
IsGitHubAction: pulumi.Bool(false),
IsManualIntegration: pulumi.Bool(false),
IsMercurial: pulumi.Bool(false),
Kind: pulumi.String("string"),
RepoUrl: pulumi.String("string"),
})
resource "azure-native_web_web_app_source_control" "webAppSourceControlResource" {
lifecycle {
create_before_destroy = true
}
name = "string"
resource_group_name = "string"
branch = "string"
deployment_rollback_enabled = false
git_hub_action_configuration = {
code_configuration = {
runtime_stack = "string"
runtime_version = "string"
}
container_configuration = {
image_name = "string"
password = "string"
server_url = "string"
username = "string"
}
generate_workflow_file = false
is_linux = false
}
is_git_hub_action = false
is_manual_integration = false
is_mercurial = false
kind = "string"
repo_url = "string"
}
var webAppSourceControlResource = new WebAppSourceControl("webAppSourceControlResource", WebAppSourceControlArgs.builder()
.name("string")
.resourceGroupName("string")
.branch("string")
.deploymentRollbackEnabled(false)
.gitHubActionConfiguration(GitHubActionConfigurationArgs.builder()
.codeConfiguration(GitHubActionCodeConfigurationArgs.builder()
.runtimeStack("string")
.runtimeVersion("string")
.build())
.containerConfiguration(GitHubActionContainerConfigurationArgs.builder()
.imageName("string")
.password("string")
.serverUrl("string")
.username("string")
.build())
.generateWorkflowFile(false)
.isLinux(false)
.build())
.isGitHubAction(false)
.isManualIntegration(false)
.isMercurial(false)
.kind("string")
.repoUrl("string")
.build());
web_app_source_control_resource = azure_native.web.WebAppSourceControl("webAppSourceControlResource",
name="string",
resource_group_name="string",
branch="string",
deployment_rollback_enabled=False,
git_hub_action_configuration={
"code_configuration": {
"runtime_stack": "string",
"runtime_version": "string",
},
"container_configuration": {
"image_name": "string",
"password": "string",
"server_url": "string",
"username": "string",
},
"generate_workflow_file": False,
"is_linux": False,
},
is_git_hub_action=False,
is_manual_integration=False,
is_mercurial=False,
kind="string",
repo_url="string")
const webAppSourceControlResource = new azure_native.web.WebAppSourceControl("webAppSourceControlResource", {
name: "string",
resourceGroupName: "string",
branch: "string",
deploymentRollbackEnabled: false,
gitHubActionConfiguration: {
codeConfiguration: {
runtimeStack: "string",
runtimeVersion: "string",
},
containerConfiguration: {
imageName: "string",
password: "string",
serverUrl: "string",
username: "string",
},
generateWorkflowFile: false,
isLinux: false,
},
isGitHubAction: false,
isManualIntegration: false,
isMercurial: false,
kind: "string",
repoUrl: "string",
});
type: azure-native:web:WebAppSourceControl
properties:
branch: string
deploymentRollbackEnabled: false
gitHubActionConfiguration:
codeConfiguration:
runtimeStack: string
runtimeVersion: string
containerConfiguration:
imageName: string
password: string
serverUrl: string
username: string
generateWorkflowFile: false
isLinux: false
isGitHubAction: false
isManualIntegration: false
isMercurial: false
kind: string
name: string
repoUrl: string
resourceGroupName: string
WebAppSourceControl 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 WebAppSourceControl resource accepts the following input properties:
- Name string
- Name of the app.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Branch string
- Name of branch to use for deployment.
- Deployment
Rollback boolEnabled - true to enable deployment rollback; otherwise, false.
- Git
Hub Pulumi.Action Configuration Azure Native. Web. Inputs. Git Hub Action Configuration - If GitHub Action is selected, than the associated configuration.
- Is
Git boolHub Action - true if this is deployed via GitHub action.
- Is
Manual boolIntegration - true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).
- Is
Mercurial bool - true for a Mercurial repository; false for a Git repository.
- Kind string
- Kind of resource.
- Repo
Url string - Repository or source control URL.
- Name string
- Name of the app.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Branch string
- Name of branch to use for deployment.
- Deployment
Rollback boolEnabled - true to enable deployment rollback; otherwise, false.
- Git
Hub GitAction Configuration Hub Action Configuration Args - If GitHub Action is selected, than the associated configuration.
- Is
Git boolHub Action - true if this is deployed via GitHub action.
- Is
Manual boolIntegration - true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).
- Is
Mercurial bool - true for a Mercurial repository; false for a Git repository.
- Kind string
- Kind of resource.
- Repo
Url string - Repository or source control URL.
- name string
- Name of the app.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- branch string
- Name of branch to use for deployment.
- deployment_
rollback_ boolenabled - true to enable deployment rollback; otherwise, false.
- git_
hub_ objectaction_ configuration - If GitHub Action is selected, than the associated configuration.
- is_
git_ boolhub_ action - true if this is deployed via GitHub action.
- is_
manual_ boolintegration - true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).
- is_
mercurial bool - true for a Mercurial repository; false for a Git repository.
- kind string
- Kind of resource.
- repo_
url string - Repository or source control URL.
- name String
- Name of the app.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- branch String
- Name of branch to use for deployment.
- deployment
Rollback BooleanEnabled - true to enable deployment rollback; otherwise, false.
- git
Hub GitAction Configuration Hub Action Configuration - If GitHub Action is selected, than the associated configuration.
- is
Git BooleanHub Action - true if this is deployed via GitHub action.
- is
Manual BooleanIntegration - true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).
- is
Mercurial Boolean - true for a Mercurial repository; false for a Git repository.
- kind String
- Kind of resource.
- repo
Url String - Repository or source control URL.
- name string
- Name of the app.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- branch string
- Name of branch to use for deployment.
- deployment
Rollback booleanEnabled - true to enable deployment rollback; otherwise, false.
- git
Hub GitAction Configuration Hub Action Configuration - If GitHub Action is selected, than the associated configuration.
- is
Git booleanHub Action - true if this is deployed via GitHub action.
- is
Manual booleanIntegration - true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).
- is
Mercurial boolean - true for a Mercurial repository; false for a Git repository.
- kind string
- Kind of resource.
- repo
Url string - Repository or source control URL.
- name str
- Name of the app.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- branch str
- Name of branch to use for deployment.
- deployment_
rollback_ boolenabled - true to enable deployment rollback; otherwise, false.
- git_
hub_ Gitaction_ configuration Hub Action Configuration Args - If GitHub Action is selected, than the associated configuration.
- is_
git_ boolhub_ action - true if this is deployed via GitHub action.
- is_
manual_ boolintegration - true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).
- is_
mercurial bool - true for a Mercurial repository; false for a Git repository.
- kind str
- Kind of resource.
- repo_
url str - Repository or source control URL.
- name String
- Name of the app.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- branch String
- Name of branch to use for deployment.
- deployment
Rollback BooleanEnabled - true to enable deployment rollback; otherwise, false.
- git
Hub Property MapAction Configuration - If GitHub Action is selected, than the associated configuration.
- is
Git BooleanHub Action - true if this is deployed via GitHub action.
- is
Manual BooleanIntegration - true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).
- is
Mercurial Boolean - true for a Mercurial repository; false for a Git repository.
- kind String
- Kind of resource.
- repo
Url String - Repository or source control URL.
Outputs
All input properties are implicitly available as output properties. Additionally, the WebAppSourceControl 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.
- System
Data Pulumi.Azure Native. Web. 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.
- 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.
- system_
data object - 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.
- 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.
- 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.
- 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.
- 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
GitHubActionCodeConfiguration, GitHubActionCodeConfigurationArgs
The GitHub action code configuration.- Runtime
Stack string - Runtime stack is used to determine the workflow file content for code base apps.
- Runtime
Version string - Runtime version is used to determine what build version to set in the workflow file.
- Runtime
Stack string - Runtime stack is used to determine the workflow file content for code base apps.
- Runtime
Version string - Runtime version is used to determine what build version to set in the workflow file.
- runtime_
stack string - Runtime stack is used to determine the workflow file content for code base apps.
- runtime_
version string - Runtime version is used to determine what build version to set in the workflow file.
- runtime
Stack String - Runtime stack is used to determine the workflow file content for code base apps.
- runtime
Version String - Runtime version is used to determine what build version to set in the workflow file.
- runtime
Stack string - Runtime stack is used to determine the workflow file content for code base apps.
- runtime
Version string - Runtime version is used to determine what build version to set in the workflow file.
- runtime_
stack str - Runtime stack is used to determine the workflow file content for code base apps.
- runtime_
version str - Runtime version is used to determine what build version to set in the workflow file.
- runtime
Stack String - Runtime stack is used to determine the workflow file content for code base apps.
- runtime
Version String - Runtime version is used to determine what build version to set in the workflow file.
GitHubActionCodeConfigurationResponse, GitHubActionCodeConfigurationResponseArgs
The GitHub action code configuration.- Runtime
Stack string - Runtime stack is used to determine the workflow file content for code base apps.
- Runtime
Version string - Runtime version is used to determine what build version to set in the workflow file.
- Runtime
Stack string - Runtime stack is used to determine the workflow file content for code base apps.
- Runtime
Version string - Runtime version is used to determine what build version to set in the workflow file.
- runtime_
stack string - Runtime stack is used to determine the workflow file content for code base apps.
- runtime_
version string - Runtime version is used to determine what build version to set in the workflow file.
- runtime
Stack String - Runtime stack is used to determine the workflow file content for code base apps.
- runtime
Version String - Runtime version is used to determine what build version to set in the workflow file.
- runtime
Stack string - Runtime stack is used to determine the workflow file content for code base apps.
- runtime
Version string - Runtime version is used to determine what build version to set in the workflow file.
- runtime_
stack str - Runtime stack is used to determine the workflow file content for code base apps.
- runtime_
version str - Runtime version is used to determine what build version to set in the workflow file.
- runtime
Stack String - Runtime stack is used to determine the workflow file content for code base apps.
- runtime
Version String - Runtime version is used to determine what build version to set in the workflow file.
GitHubActionConfiguration, GitHubActionConfigurationArgs
The GitHub action configuration.- Code
Configuration Pulumi.Azure Native. Web. Inputs. Git Hub Action Code Configuration - GitHub Action code configuration.
- Container
Configuration Pulumi.Azure Native. Web. Inputs. Git Hub Action Container Configuration - GitHub Action container configuration.
- Generate
Workflow boolFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- Is
Linux bool - This will help determine the workflow configuration to select.
- Code
Configuration GitHub Action Code Configuration - GitHub Action code configuration.
- Container
Configuration GitHub Action Container Configuration - GitHub Action container configuration.
- Generate
Workflow boolFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- Is
Linux bool - This will help determine the workflow configuration to select.
- code_
configuration object - GitHub Action code configuration.
- container_
configuration object - GitHub Action container configuration.
- generate_
workflow_ boolfile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is_
linux bool - This will help determine the workflow configuration to select.
- code
Configuration GitHub Action Code Configuration - GitHub Action code configuration.
- container
Configuration GitHub Action Container Configuration - GitHub Action container configuration.
- generate
Workflow BooleanFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is
Linux Boolean - This will help determine the workflow configuration to select.
- code
Configuration GitHub Action Code Configuration - GitHub Action code configuration.
- container
Configuration GitHub Action Container Configuration - GitHub Action container configuration.
- generate
Workflow booleanFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is
Linux boolean - This will help determine the workflow configuration to select.
- code_
configuration GitHub Action Code Configuration - GitHub Action code configuration.
- container_
configuration GitHub Action Container Configuration - GitHub Action container configuration.
- generate_
workflow_ boolfile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is_
linux bool - This will help determine the workflow configuration to select.
- code
Configuration Property Map - GitHub Action code configuration.
- container
Configuration Property Map - GitHub Action container configuration.
- generate
Workflow BooleanFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is
Linux Boolean - This will help determine the workflow configuration to select.
GitHubActionConfigurationResponse, GitHubActionConfigurationResponseArgs
The GitHub action configuration.- Code
Configuration Pulumi.Azure Native. Web. Inputs. Git Hub Action Code Configuration Response - GitHub Action code configuration.
- Container
Configuration Pulumi.Azure Native. Web. Inputs. Git Hub Action Container Configuration Response - GitHub Action container configuration.
- Generate
Workflow boolFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- Is
Linux bool - This will help determine the workflow configuration to select.
- Code
Configuration GitHub Action Code Configuration Response - GitHub Action code configuration.
- Container
Configuration GitHub Action Container Configuration Response - GitHub Action container configuration.
- Generate
Workflow boolFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- Is
Linux bool - This will help determine the workflow configuration to select.
- code_
configuration object - GitHub Action code configuration.
- container_
configuration object - GitHub Action container configuration.
- generate_
workflow_ boolfile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is_
linux bool - This will help determine the workflow configuration to select.
- code
Configuration GitHub Action Code Configuration Response - GitHub Action code configuration.
- container
Configuration GitHub Action Container Configuration Response - GitHub Action container configuration.
- generate
Workflow BooleanFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is
Linux Boolean - This will help determine the workflow configuration to select.
- code
Configuration GitHub Action Code Configuration Response - GitHub Action code configuration.
- container
Configuration GitHub Action Container Configuration Response - GitHub Action container configuration.
- generate
Workflow booleanFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is
Linux boolean - This will help determine the workflow configuration to select.
- code_
configuration GitHub Action Code Configuration Response - GitHub Action code configuration.
- container_
configuration GitHub Action Container Configuration Response - GitHub Action container configuration.
- generate_
workflow_ boolfile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is_
linux bool - This will help determine the workflow configuration to select.
- code
Configuration Property Map - GitHub Action code configuration.
- container
Configuration Property Map - GitHub Action container configuration.
- generate
Workflow BooleanFile - Workflow option to determine whether the workflow file should be generated and written to the repository.
- is
Linux Boolean - This will help determine the workflow configuration to select.
GitHubActionContainerConfiguration, GitHubActionContainerConfigurationArgs
The GitHub action container configuration.- image_
name string - The image name for the build.
- password string
- The password used to upload the image to the container registry.
- server_
url string - The server URL for the container registry where the build will be hosted.
- username string
- The username used to upload the image to the container registry.
- image_
name str - The image name for the build.
- password str
- The password used to upload the image to the container registry.
- server_
url str - The server URL for the container registry where the build will be hosted.
- username str
- The username used to upload the image to the container registry.
GitHubActionContainerConfigurationResponse, GitHubActionContainerConfigurationResponseArgs
The GitHub action container configuration.- image_
name string - The image name for the build.
- password string
- The password used to upload the image to the container registry.
- server_
url string - The server URL for the container registry where the build will be hosted.
- username string
- The username used to upload the image to the container registry.
- image_
name str - The image name for the build.
- password str
- The password used to upload the image to the container registry.
- server_
url str - The server URL for the container registry where the build will be hosted.
- username str
- The username used to upload the image to the container registry.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Wednesday, Jul 29, 2026 by Pulumi