azure-native.compute.Gallery
Specifies information about the Shared Image Gallery that you want to create or update. API Version: 2020-09-30.
Example Usage
Create or update a simple gallery with sharing profile.
using System.Collections.Generic;
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 = "Groups",
},
});
});
package main
import (
compute "github.com/pulumi/pulumi-azure-native/sdk/go/azure/compute"
"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("Groups"),
},
})
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")
.sharingProfile(Map.of("permissions", "Groups"))
.build());
}
}
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=azure_native.compute.SharingProfileArgs(
permissions="Groups",
))
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: "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.
using System.Collections.Generic;
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/go/azure/compute"
"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 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")
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",
});
resources:
gallery:
type: azure-native:compute:Gallery
properties:
description: This is the gallery description.
galleryName: myGalleryName
location: West US
resourceGroupName: myResourceGroup
Create Gallery Resource
new Gallery(name: string, args: GalleryArgs, opts?: CustomResourceOptions);
@overload
def Gallery(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
gallery_name: Optional[str] = None,
location: Optional[str] = None,
resource_group_name: Optional[str] = None,
sharing_profile: Optional[SharingProfileArgs] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def Gallery(resource_name: str,
args: GalleryArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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
The Gallery resource accepts the following input properties:
- Resource
Group stringName The name of the resource group.
- Description string
The description of this Shared Image Gallery resource. This property is updatable.
- Gallery
Name string The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with dots and periods allowed in the middle. The maximum length is 80 characters.
- Location string
Resource location
- Pulumi.
Azure Native. Compute. Inputs. Sharing Profile Args Profile for gallery sharing to subscription or tenant
- Dictionary<string, string>
Resource tags
- Resource
Group stringName The name of the resource group.
- Description string
The description of this Shared Image Gallery resource. This property is updatable.
- Gallery
Name string The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with dots and periods allowed in the middle. The maximum length is 80 characters.
- Location string
Resource location
- Sharing
Profile Args Profile for gallery sharing to subscription or tenant
- map[string]string
Resource tags
- resource
Group StringName The name of the resource group.
- description String
The description of this Shared Image Gallery resource. This property is updatable.
- gallery
Name String The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with dots and periods allowed in the middle. The maximum length is 80 characters.
- location String
Resource location
- Sharing
Profile Args Profile for gallery sharing to subscription or tenant
- Map<String,String>
Resource tags
- resource
Group stringName The name of the resource group.
- description string
The description of this Shared Image Gallery resource. This property is updatable.
- gallery
Name string The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with dots and periods allowed in the middle. The maximum length is 80 characters.
- location string
Resource location
- Sharing
Profile Args Profile for gallery sharing to subscription or tenant
- {[key: string]: string}
Resource tags
- resource_
group_ strname The name of the resource group.
- description str
The description of this Shared Image Gallery resource. This property is updatable.
- gallery_
name str The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with dots and periods allowed in the middle. The maximum length is 80 characters.
- location str
Resource location
- Sharing
Profile Args Profile for gallery sharing to subscription or tenant
- Mapping[str, str]
Resource tags
- resource
Group StringName The name of the resource group.
- description String
The description of this Shared Image Gallery resource. This property is updatable.
- gallery
Name String The name of the Shared Image Gallery. The allowed characters are alphabets and numbers with dots and periods allowed in the middle. The maximum length is 80 characters.
- location String
Resource location
- Property Map
Profile for gallery sharing to subscription or tenant
- Map<String>
Resource tags
Outputs
All input properties are implicitly available as output properties. Additionally, the Gallery resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
Resource name
- Provisioning
State string The provisioning state, which only appears in the response.
- Type string
Resource type
- Identifier
Pulumi.
Azure Native. Compute. Outputs. Gallery Identifier Response Describes the gallery unique name.
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
Resource name
- Provisioning
State string The provisioning state, which only appears in the response.
- Type string
Resource type
- Identifier
Gallery
Identifier Response Describes the gallery unique name.
- id String
The provider-assigned unique ID for this managed resource.
- name String
Resource name
- provisioning
State String The provisioning state, which only appears in the response.
- type String
Resource type
- identifier
Gallery
Identifier Response Describes the gallery unique name.
- id string
The provider-assigned unique ID for this managed resource.
- name string
Resource name
- provisioning
State string The provisioning state, which only appears in the response.
- type string
Resource type
- identifier
Gallery
Identifier Response Describes the gallery unique name.
- id str
The provider-assigned unique ID for this managed resource.
- name str
Resource name
- provisioning_
state str The provisioning state, which only appears in the response.
- type str
Resource type
- identifier
Gallery
Identifier Response Describes the gallery unique name.
- id String
The provider-assigned unique ID for this managed resource.
- name String
Resource name
- provisioning
State String The provisioning state, which only appears in the response.
- type String
Resource type
- identifier Property Map
Describes the gallery unique name.
Supporting Types
GalleryIdentifierResponse
- Unique
Name string The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- Unique
Name string The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- unique
Name String The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
- unique
Name 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.
- unique
Name String The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
GallerySharingPermissionTypes
- Private
- Private
- Groups
- Groups
- Gallery
Sharing Permission Types Private - Private
- Gallery
Sharing Permission Types Groups - Groups
- Private
- Private
- Groups
- Groups
- Private
- Private
- Groups
- Groups
- PRIVATE
- Private
- GROUPS
- Groups
- "Private"
- Private
- "Groups"
- Groups
SharingProfile
- 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
- Permissions
string | Gallery
Sharing Permission Types This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- permissions
String | Gallery
Sharing Permission Types This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- permissions
string | Gallery
Sharing Permission Types This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- permissions
str | Gallery
Sharing Permission Types This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- permissions String | "Private" | "Groups"
This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
SharingProfileGroupResponse
SharingProfileResponse
- Groups
List<Pulumi.
Azure Native. Compute. Inputs. Sharing Profile Group Response> A list of sharing profile groups.
- Permissions string
This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- Groups
[]Sharing
Profile Group Response A list of sharing profile groups.
- Permissions string
This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- groups
List<Sharing
Profile Group Response> A list of sharing profile groups.
- permissions String
This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- groups
Sharing
Profile Group Response[] A list of sharing profile groups.
- permissions string
This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- groups
Sequence[Sharing
Profile Group Response] A list of sharing profile groups.
- permissions str
This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
- groups List<Property Map>
A list of sharing profile groups.
- permissions String
This property allows you to specify the permission of sharing gallery. Possible values are: Private Groups
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}
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0