azure-native.compute.Gallery
Specifies information about the Shared Image Gallery that you want to create or update.
Uses Azure REST API version 2024-03-03. In version 2.x of the Azure Native provider, it used API version 2022-03-03.
Other available API versions: 2022-03-03, 2022-08-03, 2023-07-03. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native compute [ApiVersion]. See the version guide for details.
Example Usage
Create a community gallery.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var gallery = new AzureNative.Compute.Gallery("gallery", new()
    {
        Description = "This is the gallery description.",
        GalleryName = "myGalleryName",
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
        SharingProfile = new AzureNative.Compute.Inputs.SharingProfileArgs
        {
            CommunityGalleryInfo = new AzureNative.Compute.Inputs.CommunityGalleryInfoArgs
            {
                Eula = "eula",
                PublicNamePrefix = "PirPublic",
                PublisherContact = "pir@microsoft.com",
                PublisherUri = "uri",
            },
            Permissions = AzureNative.Compute.GallerySharingPermissionTypes.Community,
        },
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewGallery(ctx, "gallery", &compute.GalleryArgs{
			Description:       pulumi.String("This is the gallery description."),
			GalleryName:       pulumi.String("myGalleryName"),
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SharingProfile: &compute.SharingProfileArgs{
				CommunityGalleryInfo: &compute.CommunityGalleryInfoArgs{
					Eula:             pulumi.String("eula"),
					PublicNamePrefix: pulumi.String("PirPublic"),
					PublisherContact: pulumi.String("pir@microsoft.com"),
					PublisherUri:     pulumi.String("uri"),
				},
				Permissions: pulumi.String(compute.GallerySharingPermissionTypesCommunity),
			},
		})
		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.compute.Gallery;
import com.pulumi.azurenative.compute.GalleryArgs;
import com.pulumi.azurenative.compute.inputs.SharingProfileArgs;
import com.pulumi.azurenative.compute.inputs.CommunityGalleryInfoArgs;
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 gallery = new Gallery("gallery", GalleryArgs.builder()
            .description("This is the gallery description.")
            .galleryName("myGalleryName")
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .sharingProfile(SharingProfileArgs.builder()
                .communityGalleryInfo(CommunityGalleryInfoArgs.builder()
                    .eula("eula")
                    .publicNamePrefix("PirPublic")
                    .publisherContact("pir@microsoft.com")
                    .publisherUri("uri")
                    .build())
                .permissions("Community")
                .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gallery = new azure_native.compute.Gallery("gallery", {
    description: "This is the gallery description.",
    galleryName: "myGalleryName",
    location: "West US",
    resourceGroupName: "myResourceGroup",
    sharingProfile: {
        communityGalleryInfo: {
            eula: "eula",
            publicNamePrefix: "PirPublic",
            publisherContact: "pir@microsoft.com",
            publisherUri: "uri",
        },
        permissions: azure_native.compute.GallerySharingPermissionTypes.Community,
    },
});
import pulumi
import pulumi_azure_native as azure_native
gallery = azure_native.compute.Gallery("gallery",
    description="This is the gallery description.",
    gallery_name="myGalleryName",
    location="West US",
    resource_group_name="myResourceGroup",
    sharing_profile={
        "community_gallery_info": {
            "eula": "eula",
            "public_name_prefix": "PirPublic",
            "publisher_contact": "pir@microsoft.com",
            "publisher_uri": "uri",
        },
        "permissions": azure_native.compute.GallerySharingPermissionTypes.COMMUNITY,
    })
resources:
  gallery:
    type: azure-native:compute:Gallery
    properties:
      description: This is the gallery description.
      galleryName: myGalleryName
      location: West US
      resourceGroupName: myResourceGroup
      sharingProfile:
        communityGalleryInfo:
          eula: eula
          publicNamePrefix: PirPublic
          publisherContact: pir@microsoft.com
          publisherUri: uri
        permissions: Community
Create or update a simple gallery with sharing profile.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var gallery = new AzureNative.Compute.Gallery("gallery", new()
    {
        Description = "This is the gallery description.",
        GalleryName = "myGalleryName",
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
        SharingProfile = new AzureNative.Compute.Inputs.SharingProfileArgs
        {
            Permissions = AzureNative.Compute.GallerySharingPermissionTypes.Groups,
        },
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewGallery(ctx, "gallery", &compute.GalleryArgs{
			Description:       pulumi.String("This is the gallery description."),
			GalleryName:       pulumi.String("myGalleryName"),
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SharingProfile: &compute.SharingProfileArgs{
				Permissions: pulumi.String(compute.GallerySharingPermissionTypesGroups),
			},
		})
		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.compute.Gallery;
import com.pulumi.azurenative.compute.GalleryArgs;
import com.pulumi.azurenative.compute.inputs.SharingProfileArgs;
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 gallery = new Gallery("gallery", GalleryArgs.builder()
            .description("This is the gallery description.")
            .galleryName("myGalleryName")
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .sharingProfile(SharingProfileArgs.builder()
                .permissions("Groups")
                .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gallery = new azure_native.compute.Gallery("gallery", {
    description: "This is the gallery description.",
    galleryName: "myGalleryName",
    location: "West US",
    resourceGroupName: "myResourceGroup",
    sharingProfile: {
        permissions: azure_native.compute.GallerySharingPermissionTypes.Groups,
    },
});
import pulumi
import pulumi_azure_native as azure_native
gallery = azure_native.compute.Gallery("gallery",
    description="This is the gallery description.",
    gallery_name="myGalleryName",
    location="West US",
    resource_group_name="myResourceGroup",
    sharing_profile={
        "permissions": azure_native.compute.GallerySharingPermissionTypes.GROUPS,
    })
resources:
  gallery:
    type: azure-native:compute:Gallery
    properties:
      description: This is the gallery description.
      galleryName: myGalleryName
      location: West US
      resourceGroupName: myResourceGroup
      sharingProfile:
        permissions: Groups
Create or update a simple gallery with soft deletion enabled.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var gallery = new AzureNative.Compute.Gallery("gallery", new()
    {
        Description = "This is the gallery description.",
        GalleryName = "myGalleryName",
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
        SoftDeletePolicy = new AzureNative.Compute.Inputs.SoftDeletePolicyArgs
        {
            IsSoftDeleteEnabled = true,
        },
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewGallery(ctx, "gallery", &compute.GalleryArgs{
			Description:       pulumi.String("This is the gallery description."),
			GalleryName:       pulumi.String("myGalleryName"),
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SoftDeletePolicy: &compute.SoftDeletePolicyArgs{
				IsSoftDeleteEnabled: pulumi.Bool(true),
			},
		})
		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.compute.Gallery;
import com.pulumi.azurenative.compute.GalleryArgs;
import com.pulumi.azurenative.compute.inputs.SoftDeletePolicyArgs;
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 gallery = new Gallery("gallery", GalleryArgs.builder()
            .description("This is the gallery description.")
            .galleryName("myGalleryName")
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .softDeletePolicy(SoftDeletePolicyArgs.builder()
                .isSoftDeleteEnabled(true)
                .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gallery = new azure_native.compute.Gallery("gallery", {
    description: "This is the gallery description.",
    galleryName: "myGalleryName",
    location: "West US",
    resourceGroupName: "myResourceGroup",
    softDeletePolicy: {
        isSoftDeleteEnabled: true,
    },
});
import pulumi
import pulumi_azure_native as azure_native
gallery = azure_native.compute.Gallery("gallery",
    description="This is the gallery description.",
    gallery_name="myGalleryName",
    location="West US",
    resource_group_name="myResourceGroup",
    soft_delete_policy={
        "is_soft_delete_enabled": True,
    })
resources:
  gallery:
    type: azure-native:compute:Gallery
    properties:
      description: This is the gallery description.
      galleryName: myGalleryName
      location: West US
      resourceGroupName: myResourceGroup
      softDeletePolicy:
        isSoftDeleteEnabled: true
Create or update a simple gallery.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var gallery = new AzureNative.Compute.Gallery("gallery", new()
    {
        Description = "This is the gallery description.",
        GalleryName = "myGalleryName",
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewGallery(ctx, "gallery", &compute.GalleryArgs{
			Description:       pulumi.String("This is the gallery description."),
			GalleryName:       pulumi.String("myGalleryName"),
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
		})
		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.compute.Gallery;
import com.pulumi.azurenative.compute.GalleryArgs;
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 gallery = new Gallery("gallery", GalleryArgs.builder()
            .description("This is the gallery description.")
            .galleryName("myGalleryName")
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gallery = new azure_native.compute.Gallery("gallery", {
    description: "This is the gallery description.",
    galleryName: "myGalleryName",
    location: "West US",
    resourceGroupName: "myResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
gallery = azure_native.compute.Gallery("gallery",
    description="This is the gallery description.",
    gallery_name="myGalleryName",
    location="West US",
    resource_group_name="myResourceGroup")
resources:
  gallery:
    type: azure-native:compute:Gallery
    properties:
      description: This is the gallery description.
      galleryName: myGalleryName
      location: West US
      resourceGroupName: myResourceGroup
Create Gallery Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Gallery(name: string, args: GalleryArgs, opts?: CustomResourceOptions);@overload
def Gallery(resource_name: str,
            args: GalleryArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Gallery(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            resource_group_name: Optional[str] = None,
            description: Optional[str] = None,
            gallery_name: Optional[str] = None,
            identity: Optional[GalleryIdentityArgs] = None,
            location: Optional[str] = None,
            sharing_profile: Optional[SharingProfileArgs] = None,
            soft_delete_policy: Optional[SoftDeletePolicyArgs] = None,
            tags: Optional[Mapping[str, str]] = None)func NewGallery(ctx *Context, name string, args GalleryArgs, opts ...ResourceOption) (*Gallery, error)public Gallery(string name, GalleryArgs args, CustomResourceOptions? opts = null)
public Gallery(String name, GalleryArgs args)
public Gallery(String name, GalleryArgs args, CustomResourceOptions options)
type: azure-native:compute:Gallery
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 GalleryArgs
- 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 GalleryArgs
- 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 GalleryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GalleryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GalleryArgs
- 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 galleryResource = new AzureNative.Compute.Gallery("galleryResource", new()
{
    ResourceGroupName = "string",
    Description = "string",
    GalleryName = "string",
    Identity = new AzureNative.Compute.Inputs.GalleryIdentityArgs
    {
        Type = AzureNative.Compute.ResourceIdentityType.SystemAssigned,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    SharingProfile = new AzureNative.Compute.Inputs.SharingProfileArgs
    {
        CommunityGalleryInfo = new AzureNative.Compute.Inputs.CommunityGalleryInfoArgs
        {
            Eula = "string",
            PublicNamePrefix = "string",
            PublisherContact = "string",
            PublisherUri = "string",
        },
        Permissions = "string",
    },
    SoftDeletePolicy = new AzureNative.Compute.Inputs.SoftDeletePolicyArgs
    {
        IsSoftDeleteEnabled = false,
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := compute.NewGallery(ctx, "galleryResource", &compute.GalleryArgs{
	ResourceGroupName: pulumi.String("string"),
	Description:       pulumi.String("string"),
	GalleryName:       pulumi.String("string"),
	Identity: &compute.GalleryIdentityArgs{
		Type: compute.ResourceIdentityTypeSystemAssigned,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	SharingProfile: &compute.SharingProfileArgs{
		CommunityGalleryInfo: &compute.CommunityGalleryInfoArgs{
			Eula:             pulumi.String("string"),
			PublicNamePrefix: pulumi.String("string"),
			PublisherContact: pulumi.String("string"),
			PublisherUri:     pulumi.String("string"),
		},
		Permissions: pulumi.String("string"),
	},
	SoftDeletePolicy: &compute.SoftDeletePolicyArgs{
		IsSoftDeleteEnabled: pulumi.Bool(false),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var galleryResource = new com.pulumi.azurenative.compute.Gallery("galleryResource", com.pulumi.azurenative.compute.GalleryArgs.builder()
    .resourceGroupName("string")
    .description("string")
    .galleryName("string")
    .identity(GalleryIdentityArgs.builder()
        .type("SystemAssigned")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .sharingProfile(SharingProfileArgs.builder()
        .communityGalleryInfo(CommunityGalleryInfoArgs.builder()
            .eula("string")
            .publicNamePrefix("string")
            .publisherContact("string")
            .publisherUri("string")
            .build())
        .permissions("string")
        .build())
    .softDeletePolicy(SoftDeletePolicyArgs.builder()
        .isSoftDeleteEnabled(false)
        .build())
    .tags(Map.of("string", "string"))
    .build());
gallery_resource = azure_native.compute.Gallery("galleryResource",
    resource_group_name="string",
    description="string",
    gallery_name="string",
    identity={
        "type": azure_native.compute.ResourceIdentityType.SYSTEM_ASSIGNED,
        "user_assigned_identities": ["string"],
    },
    location="string",
    sharing_profile={
        "community_gallery_info": {
            "eula": "string",
            "public_name_prefix": "string",
            "publisher_contact": "string",
            "publisher_uri": "string",
        },
        "permissions": "string",
    },
    soft_delete_policy={
        "is_soft_delete_enabled": False,
    },
    tags={
        "string": "string",
    })
const galleryResource = new azure_native.compute.Gallery("galleryResource", {
    resourceGroupName: "string",
    description: "string",
    galleryName: "string",
    identity: {
        type: azure_native.compute.ResourceIdentityType.SystemAssigned,
        userAssignedIdentities: ["string"],
    },
    location: "string",
    sharingProfile: {
        communityGalleryInfo: {
            eula: "string",
            publicNamePrefix: "string",
            publisherContact: "string",
            publisherUri: "string",
        },
        permissions: "string",
    },
    softDeletePolicy: {
        isSoftDeleteEnabled: false,
    },
    tags: {
        string: "string",
    },
});
type: azure-native:compute:Gallery
properties:
    description: string
    galleryName: string
    identity:
        type: SystemAssigned
        userAssignedIdentities:
            - string
    location: string
    resourceGroupName: string
    sharingProfile:
        communityGalleryInfo:
            eula: string
            publicNamePrefix: string
            publisherContact: string
            publisherUri: string
        permissions: string
    softDeletePolicy:
        isSoftDeleteEnabled: false
    tags:
        string: string
Gallery 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 Gallery resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Description string
- The description of this Shared Image Gallery resource. This property is updatable.
- GalleryName string
- The name of the Shared Image Gallery.
- Identity
Pulumi.Azure Native. Compute. Inputs. Gallery Identity 
- The identity of the gallery, if configured.
- Location string
- The geo-location where the resource lives
- 
Pulumi.Azure Native. Compute. Inputs. Sharing Profile 
- Profile for gallery sharing to subscription or tenant
- SoftDelete Pulumi.Policy Azure Native. Compute. Inputs. Soft Delete Policy 
- Contains information about the soft deletion policy of the gallery.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Description string
- The description of this Shared Image Gallery resource. This property is updatable.
- GalleryName string
- The name of the Shared Image Gallery.
- Identity
GalleryIdentity Args 
- The identity of the gallery, if configured.
- Location string
- The geo-location where the resource lives
- 
SharingProfile Args 
- Profile for gallery sharing to subscription or tenant
- SoftDelete SoftPolicy Delete Policy Args 
- Contains information about the soft deletion policy of the gallery.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- description String
- The description of this Shared Image Gallery resource. This property is updatable.
- galleryName String
- The name of the Shared Image Gallery.
- identity
GalleryIdentity 
- The identity of the gallery, if configured.
- location String
- The geo-location where the resource lives
- 
SharingProfile 
- Profile for gallery sharing to subscription or tenant
- softDelete SoftPolicy Delete Policy 
- Contains information about the soft deletion policy of the gallery.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- description string
- The description of this Shared Image Gallery resource. This property is updatable.
- galleryName string
- The name of the Shared Image Gallery.
- identity
GalleryIdentity 
- The identity of the gallery, if configured.
- location string
- The geo-location where the resource lives
- 
SharingProfile 
- Profile for gallery sharing to subscription or tenant
- softDelete SoftPolicy Delete Policy 
- Contains information about the soft deletion policy of the gallery.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- description str
- The description of this Shared Image Gallery resource. This property is updatable.
- gallery_name str
- The name of the Shared Image Gallery.
- identity
GalleryIdentity Args 
- The identity of the gallery, if configured.
- location str
- The geo-location where the resource lives
- 
SharingProfile Args 
- Profile for gallery sharing to subscription or tenant
- soft_delete_ Softpolicy Delete Policy Args 
- Contains information about the soft deletion policy of the gallery.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- description String
- The description of this Shared Image Gallery resource. This property is updatable.
- galleryName String
- The name of the Shared Image Gallery.
- identity Property Map
- The identity of the gallery, if configured.
- location String
- The geo-location where the resource lives
- Property Map
- Profile for gallery sharing to subscription or tenant
- softDelete Property MapPolicy 
- Contains information about the soft deletion policy of the gallery.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Gallery resource produces the following output properties:
- AzureApi 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
- ProvisioningState string
- The provisioning state, which only appears in the response.
- 
Pulumi.Azure Native. Compute. Outputs. Sharing Status Response 
- Sharing status of current gallery.
- SystemData Pulumi.Azure Native. Compute. 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"
- Identifier
Pulumi.Azure Native. Compute. Outputs. Gallery Identifier Response 
- Describes the gallery unique name.
- AzureApi 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
- ProvisioningState string
- The provisioning state, which only appears in the response.
- 
SharingStatus Response 
- Sharing status of current gallery.
- SystemData 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"
- Identifier
GalleryIdentifier Response 
- Describes the gallery unique name.
- azureApi 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
- provisioningState String
- The provisioning state, which only appears in the response.
- 
SharingStatus Response 
- Sharing status of current gallery.
- systemData 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"
- identifier
GalleryIdentifier Response 
- Describes the gallery unique name.
- azureApi 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
- provisioningState string
- The provisioning state, which only appears in the response.
- 
SharingStatus Response 
- Sharing status of current gallery.
- systemData 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"
- identifier
GalleryIdentifier Response 
- Describes the gallery unique name.
- 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
- provisioning_state str
- The provisioning state, which only appears in the response.
- 
SharingStatus Response 
- Sharing status of current gallery.
- 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"
- identifier
GalleryIdentifier Response 
- Describes the gallery unique name.
- azureApi 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
- provisioningState String
- The provisioning state, which only appears in the response.
- Property Map
- Sharing status of current gallery.
- systemData 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"
- identifier Property Map
- Describes the gallery unique name.
Supporting Types
CommunityGalleryInfo, CommunityGalleryInfoArgs      
Information of community gallery if current gallery is shared to community- Eula string
- End-user license agreement for community gallery image.
- PublicName stringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- PublisherContact string
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- PublisherUri string
- The link to the publisher website. Visible to all users.
- Eula string
- End-user license agreement for community gallery image.
- PublicName stringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- PublisherContact string
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- PublisherUri string
- The link to the publisher website. Visible to all users.
- eula String
- End-user license agreement for community gallery image.
- publicName StringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisherContact String
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisherUri String
- The link to the publisher website. Visible to all users.
- eula string
- End-user license agreement for community gallery image.
- publicName stringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisherContact string
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisherUri string
- The link to the publisher website. Visible to all users.
- eula str
- End-user license agreement for community gallery image.
- public_name_ strprefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisher_contact str
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisher_uri str
- The link to the publisher website. Visible to all users.
- eula String
- End-user license agreement for community gallery image.
- publicName StringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisherContact String
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisherUri String
- The link to the publisher website. Visible to all users.
CommunityGalleryInfoResponse, CommunityGalleryInfoResponseArgs        
Information of community gallery if current gallery is shared to community- CommunityGallery boolEnabled 
- Contains info about whether community gallery sharing is enabled.
- PublicNames List<string>
- Community gallery public name list.
- Eula string
- End-user license agreement for community gallery image.
- PublicName stringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- PublisherContact string
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- PublisherUri string
- The link to the publisher website. Visible to all users.
- CommunityGallery boolEnabled 
- Contains info about whether community gallery sharing is enabled.
- PublicNames []string
- Community gallery public name list.
- Eula string
- End-user license agreement for community gallery image.
- PublicName stringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- PublisherContact string
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- PublisherUri string
- The link to the publisher website. Visible to all users.
- communityGallery BooleanEnabled 
- Contains info about whether community gallery sharing is enabled.
- publicNames List<String>
- Community gallery public name list.
- eula String
- End-user license agreement for community gallery image.
- publicName StringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisherContact String
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisherUri String
- The link to the publisher website. Visible to all users.
- communityGallery booleanEnabled 
- Contains info about whether community gallery sharing is enabled.
- publicNames string[]
- Community gallery public name list.
- eula string
- End-user license agreement for community gallery image.
- publicName stringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisherContact string
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisherUri string
- The link to the publisher website. Visible to all users.
- community_gallery_ boolenabled 
- Contains info about whether community gallery sharing is enabled.
- public_names Sequence[str]
- Community gallery public name list.
- eula str
- End-user license agreement for community gallery image.
- public_name_ strprefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisher_contact str
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisher_uri str
- The link to the publisher website. Visible to all users.
- communityGallery BooleanEnabled 
- Contains info about whether community gallery sharing is enabled.
- publicNames List<String>
- Community gallery public name list.
- eula String
- End-user license agreement for community gallery image.
- publicName StringPrefix 
- The prefix of the gallery name that will be displayed publicly. Visible to all users.
- publisherContact String
- Community gallery publisher support email. The email address of the publisher. Visible to all users.
- publisherUri String
- The link to the publisher website. Visible to all users.
GalleryIdentifierResponse, GalleryIdentifierResponseArgs      
Describes the gallery unique name.- UniqueName string
- The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- UniqueName string
- The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- uniqueName String
- The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- uniqueName string
- The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- unique_name str
- The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- uniqueName String
- The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
GalleryIdentity, GalleryIdentityArgs    
Identity for the virtual machine.- Type
Pulumi.Azure Native. Compute. Resource Identity Type 
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- UserAssigned List<string>Identities 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Type
ResourceIdentity Type 
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- UserAssigned []stringIdentities 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- userAssigned List<String>Identities 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- userAssigned string[]Identities 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- user_assigned_ Sequence[str]identities 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
"SystemAssigned" | "User Assigned" | "System Assigned, User Assigned" | "None" 
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- userAssigned List<String>Identities 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
GalleryIdentityResponse, GalleryIdentityResponseArgs      
Identity for the virtual machine.- PrincipalId string
- The principal id of the gallery identity. This property will only be provided for a system assigned identity.
- TenantId string
- The AAD tenant id of the gallery identity. This property will only be provided for a system assigned identity.
- Type string
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Compute. Inputs. User Assigned Identities Value Response> 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- PrincipalId string
- The principal id of the gallery identity. This property will only be provided for a system assigned identity.
- TenantId string
- The AAD tenant id of the gallery identity. This property will only be provided for a system assigned identity.
- Type string
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- UserAssigned map[string]UserIdentities Assigned Identities Value Response 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId String
- The principal id of the gallery identity. This property will only be provided for a system assigned identity.
- tenantId String
- The AAD tenant id of the gallery identity. This property will only be provided for a system assigned identity.
- type String
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- userAssigned Map<String,UserIdentities Assigned Identities Value Response> 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId string
- The principal id of the gallery identity. This property will only be provided for a system assigned identity.
- tenantId string
- The AAD tenant id of the gallery identity. This property will only be provided for a system assigned identity.
- type string
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- userAssigned {[key: string]: UserIdentities Assigned Identities Value Response} 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal_id str
- The principal id of the gallery identity. This property will only be provided for a system assigned identity.
- tenant_id str
- The AAD tenant id of the gallery identity. This property will only be provided for a system assigned identity.
- type str
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- user_assigned_ Mapping[str, Useridentities Assigned Identities Value Response] 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId String
- The principal id of the gallery identity. This property will only be provided for a system assigned identity.
- tenantId String
- The AAD tenant id of the gallery identity. This property will only be provided for a system assigned identity.
- type String
- The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.
- userAssigned Map<Property Map>Identities 
- The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
GallerySharingPermissionTypes, GallerySharingPermissionTypesArgs        
- Private
- Private
- Groups
- Groups
- Community
- Community
- GallerySharing Permission Types Private 
- Private
- GallerySharing Permission Types Groups 
- Groups
- GallerySharing Permission Types Community 
- Community
- Private
- Private
- Groups
- Groups
- Community
- Community
- Private
- Private
- Groups
- Groups
- Community
- Community
- PRIVATE
- Private
- GROUPS
- Groups
- COMMUNITY
- Community
- "Private"
- Private
- "Groups"
- Groups
- "Community"
- Community
RegionalSharingStatusResponse, RegionalSharingStatusResponseArgs        
Gallery regional sharing statusResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- ResourceIdentity Type System Assigned 
- SystemAssigned
- ResourceIdentity Type User Assigned 
- UserAssigned
- ResourceIdentity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- ResourceIdentity Type None 
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
- "None"
- None
SharingProfile, SharingProfileArgs    
Profile for gallery sharing to subscription or tenant- CommunityGallery Pulumi.Info Azure Native. Compute. Inputs. Community Gallery Info 
- Information of community gallery if current gallery is shared to community.
- Permissions
string | Pulumi.Azure Native. Compute. Gallery Sharing Permission Types 
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- CommunityGallery CommunityInfo Gallery Info 
- Information of community gallery if current gallery is shared to community.
- Permissions
string | GallerySharing Permission Types 
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- communityGallery CommunityInfo Gallery Info 
- Information of community gallery if current gallery is shared to community.
- permissions
String | GallerySharing Permission Types 
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- communityGallery CommunityInfo Gallery Info 
- Information of community gallery if current gallery is shared to community.
- permissions
string | GallerySharing Permission Types 
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- community_gallery_ Communityinfo Gallery Info 
- Information of community gallery if current gallery is shared to community.
- permissions
str | GallerySharing Permission Types 
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- communityGallery Property MapInfo 
- Information of community gallery if current gallery is shared to community.
- permissions String | "Private" | "Groups" | "Community"
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
SharingProfileGroupResponse, SharingProfileGroupResponseArgs        
Group of the gallery sharing profileSharingProfileResponse, SharingProfileResponseArgs      
Profile for gallery sharing to subscription or tenant- Groups
List<Pulumi.Azure Native. Compute. Inputs. Sharing Profile Group Response> 
- A list of sharing profile groups.
- CommunityGallery Pulumi.Info Azure Native. Compute. Inputs. Community Gallery Info Response 
- Information of community gallery if current gallery is shared to community.
- Permissions string
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- Groups
[]SharingProfile Group Response 
- A list of sharing profile groups.
- CommunityGallery CommunityInfo Gallery Info Response 
- Information of community gallery if current gallery is shared to community.
- Permissions string
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- groups
List<SharingProfile Group Response> 
- A list of sharing profile groups.
- communityGallery CommunityInfo Gallery Info Response 
- Information of community gallery if current gallery is shared to community.
- permissions String
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- groups
SharingProfile Group Response[] 
- A list of sharing profile groups.
- communityGallery CommunityInfo Gallery Info Response 
- Information of community gallery if current gallery is shared to community.
- permissions string
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- groups
Sequence[SharingProfile Group Response] 
- A list of sharing profile groups.
- community_gallery_ Communityinfo Gallery Info Response 
- Information of community gallery if current gallery is shared to community.
- permissions str
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
- groups List<Property Map>
- A list of sharing profile groups.
- communityGallery Property MapInfo 
- Information of community gallery if current gallery is shared to community.
- permissions String
- This property allows you to specify the permission of sharing gallery. Possible values are: Private, Groups, Community.
SharingStatusResponse, SharingStatusResponseArgs      
Sharing status of current gallery.- AggregatedState string
- Aggregated sharing state of current gallery.
- Summary
List<Pulumi.Azure Native. Compute. Inputs. Regional Sharing Status Response> 
- Summary of all regional sharing status.
- AggregatedState string
- Aggregated sharing state of current gallery.
- Summary
[]RegionalSharing Status Response 
- Summary of all regional sharing status.
- aggregatedState String
- Aggregated sharing state of current gallery.
- summary
List<RegionalSharing Status Response> 
- Summary of all regional sharing status.
- aggregatedState string
- Aggregated sharing state of current gallery.
- summary
RegionalSharing Status Response[] 
- Summary of all regional sharing status.
- aggregated_state str
- Aggregated sharing state of current gallery.
- summary
Sequence[RegionalSharing Status Response] 
- Summary of all regional sharing status.
- aggregatedState String
- Aggregated sharing state of current gallery.
- summary List<Property Map>
- Summary of all regional sharing status.
SoftDeletePolicy, SoftDeletePolicyArgs      
Contains information about the soft deletion policy of the gallery.- IsSoft boolDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- IsSoft boolDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- isSoft BooleanDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- isSoft booleanDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- is_soft_ booldelete_ enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- isSoft BooleanDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
SoftDeletePolicyResponse, SoftDeletePolicyResponseArgs        
Contains information about the soft deletion policy of the gallery.- IsSoft boolDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- IsSoft boolDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- isSoft BooleanDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- isSoft booleanDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- is_soft_ booldelete_ enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
- isSoft BooleanDelete Enabled 
- Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time.
SystemDataResponse, SystemDataResponseArgs      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UserAssignedIdentitiesValueResponse, UserAssignedIdentitiesValueResponseArgs          
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
- clientId string
- The client id of user assigned identity.
- principalId string
- The principal id of user assigned identity.
- client_id str
- The client id of user assigned identity.
- principal_id str
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:Gallery myGalleryName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
