outscale.ImageLaunchPermission
Explore with Pulumi AI
Manages an image launch permission.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Add permissions
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const image01 = new outscale.ImageLaunchPermission("image01", {
imageId: "ami-12345678",
permissionAdditions: {
accountIds: ["012345678910"],
},
});
import pulumi
import pulumi_outscale as outscale
image01 = outscale.ImageLaunchPermission("image01",
image_id="ami-12345678",
permission_additions={
"account_ids": ["012345678910"],
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewImageLaunchPermission(ctx, "image01", &outscale.ImageLaunchPermissionArgs{
ImageId: pulumi.String("ami-12345678"),
PermissionAdditions: &outscale.ImageLaunchPermissionPermissionAdditionsArgs{
AccountIds: pulumi.StringArray{
pulumi.String("012345678910"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var image01 = new Outscale.ImageLaunchPermission("image01", new()
{
ImageId = "ami-12345678",
PermissionAdditions = new Outscale.Inputs.ImageLaunchPermissionPermissionAdditionsArgs
{
AccountIds = new[]
{
"012345678910",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.ImageLaunchPermission;
import com.pulumi.outscale.ImageLaunchPermissionArgs;
import com.pulumi.outscale.inputs.ImageLaunchPermissionPermissionAdditionsArgs;
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 image01 = new ImageLaunchPermission("image01", ImageLaunchPermissionArgs.builder()
.imageId("ami-12345678")
.permissionAdditions(ImageLaunchPermissionPermissionAdditionsArgs.builder()
.accountIds("012345678910")
.build())
.build());
}
}
resources:
image01:
type: outscale:ImageLaunchPermission
properties:
imageId: ami-12345678
permissionAdditions:
accountIds:
- '012345678910'
Remove permissions
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const image02 = new outscale.ImageLaunchPermission("image02", {
imageId: "ami-12345678",
permissionRemovals: {
accountIds: ["012345678910"],
},
});
import pulumi
import pulumi_outscale as outscale
image02 = outscale.ImageLaunchPermission("image02",
image_id="ami-12345678",
permission_removals={
"account_ids": ["012345678910"],
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewImageLaunchPermission(ctx, "image02", &outscale.ImageLaunchPermissionArgs{
ImageId: pulumi.String("ami-12345678"),
PermissionRemovals: &outscale.ImageLaunchPermissionPermissionRemovalsArgs{
AccountIds: pulumi.StringArray{
pulumi.String("012345678910"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var image02 = new Outscale.ImageLaunchPermission("image02", new()
{
ImageId = "ami-12345678",
PermissionRemovals = new Outscale.Inputs.ImageLaunchPermissionPermissionRemovalsArgs
{
AccountIds = new[]
{
"012345678910",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.ImageLaunchPermission;
import com.pulumi.outscale.ImageLaunchPermissionArgs;
import com.pulumi.outscale.inputs.ImageLaunchPermissionPermissionRemovalsArgs;
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 image02 = new ImageLaunchPermission("image02", ImageLaunchPermissionArgs.builder()
.imageId("ami-12345678")
.permissionRemovals(ImageLaunchPermissionPermissionRemovalsArgs.builder()
.accountIds("012345678910")
.build())
.build());
}
}
resources:
image02:
type: outscale:ImageLaunchPermission
properties:
imageId: ami-12345678
permissionRemovals:
accountIds:
- '012345678910'
Create ImageLaunchPermission Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ImageLaunchPermission(name: string, args: ImageLaunchPermissionArgs, opts?: CustomResourceOptions);
@overload
def ImageLaunchPermission(resource_name: str,
args: ImageLaunchPermissionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ImageLaunchPermission(resource_name: str,
opts: Optional[ResourceOptions] = None,
image_id: Optional[str] = None,
image_launch_permission_id: Optional[str] = None,
permission_additions: Optional[ImageLaunchPermissionPermissionAdditionsArgs] = None,
permission_removals: Optional[ImageLaunchPermissionPermissionRemovalsArgs] = None)
func NewImageLaunchPermission(ctx *Context, name string, args ImageLaunchPermissionArgs, opts ...ResourceOption) (*ImageLaunchPermission, error)
public ImageLaunchPermission(string name, ImageLaunchPermissionArgs args, CustomResourceOptions? opts = null)
public ImageLaunchPermission(String name, ImageLaunchPermissionArgs args)
public ImageLaunchPermission(String name, ImageLaunchPermissionArgs args, CustomResourceOptions options)
type: outscale:ImageLaunchPermission
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 ImageLaunchPermissionArgs
- 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 ImageLaunchPermissionArgs
- 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 ImageLaunchPermissionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImageLaunchPermissionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImageLaunchPermissionArgs
- 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 imageLaunchPermissionResource = new Outscale.ImageLaunchPermission("imageLaunchPermissionResource", new()
{
ImageId = "string",
ImageLaunchPermissionId = "string",
PermissionAdditions = new Outscale.Inputs.ImageLaunchPermissionPermissionAdditionsArgs
{
AccountIds = new[]
{
"string",
},
GlobalPermission = "string",
},
PermissionRemovals = new Outscale.Inputs.ImageLaunchPermissionPermissionRemovalsArgs
{
AccountIds = new[]
{
"string",
},
GlobalPermission = "string",
},
});
example, err := outscale.NewImageLaunchPermission(ctx, "imageLaunchPermissionResource", &outscale.ImageLaunchPermissionArgs{
ImageId: pulumi.String("string"),
ImageLaunchPermissionId: pulumi.String("string"),
PermissionAdditions: &.ImageLaunchPermissionPermissionAdditionsArgs{
AccountIds: pulumi.StringArray{
pulumi.String("string"),
},
GlobalPermission: pulumi.String("string"),
},
PermissionRemovals: &.ImageLaunchPermissionPermissionRemovalsArgs{
AccountIds: pulumi.StringArray{
pulumi.String("string"),
},
GlobalPermission: pulumi.String("string"),
},
})
var imageLaunchPermissionResource = new ImageLaunchPermission("imageLaunchPermissionResource", ImageLaunchPermissionArgs.builder()
.imageId("string")
.imageLaunchPermissionId("string")
.permissionAdditions(ImageLaunchPermissionPermissionAdditionsArgs.builder()
.accountIds("string")
.globalPermission("string")
.build())
.permissionRemovals(ImageLaunchPermissionPermissionRemovalsArgs.builder()
.accountIds("string")
.globalPermission("string")
.build())
.build());
image_launch_permission_resource = outscale.ImageLaunchPermission("imageLaunchPermissionResource",
image_id="string",
image_launch_permission_id="string",
permission_additions={
"account_ids": ["string"],
"global_permission": "string",
},
permission_removals={
"account_ids": ["string"],
"global_permission": "string",
})
const imageLaunchPermissionResource = new outscale.ImageLaunchPermission("imageLaunchPermissionResource", {
imageId: "string",
imageLaunchPermissionId: "string",
permissionAdditions: {
accountIds: ["string"],
globalPermission: "string",
},
permissionRemovals: {
accountIds: ["string"],
globalPermission: "string",
},
});
type: outscale:ImageLaunchPermission
properties:
imageId: string
imageLaunchPermissionId: string
permissionAdditions:
accountIds:
- string
globalPermission: string
permissionRemovals:
accountIds:
- string
globalPermission: string
ImageLaunchPermission 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 ImageLaunchPermission resource accepts the following input properties:
- Image
Id string - The ID of the OMI you want to modify.
- Image
Launch stringPermission Id - Permission
Additions ImageLaunch Permission Permission Additions - Information about the users to whom you want to give permissions for the resource.
- Permission
Removals ImageLaunch Permission Permission Removals - Information about the users from whom you want to remove permissions for the resource.
- Image
Id string - The ID of the OMI you want to modify.
- Image
Launch stringPermission Id - Permission
Additions ImageLaunch Permission Permission Additions Args - Information about the users to whom you want to give permissions for the resource.
- Permission
Removals ImageLaunch Permission Permission Removals Args - Information about the users from whom you want to remove permissions for the resource.
- image
Id String - The ID of the OMI you want to modify.
- image
Launch StringPermission Id - permission
Additions ImageLaunch Permission Permission Additions - Information about the users to whom you want to give permissions for the resource.
- permission
Removals ImageLaunch Permission Permission Removals - Information about the users from whom you want to remove permissions for the resource.
- image
Id string - The ID of the OMI you want to modify.
- image
Launch stringPermission Id - permission
Additions ImageLaunch Permission Permission Additions - Information about the users to whom you want to give permissions for the resource.
- permission
Removals ImageLaunch Permission Permission Removals - Information about the users from whom you want to remove permissions for the resource.
- image_
id str - The ID of the OMI you want to modify.
- image_
launch_ strpermission_ id - permission_
additions ImageLaunch Permission Permission Additions Args - Information about the users to whom you want to give permissions for the resource.
- permission_
removals ImageLaunch Permission Permission Removals Args - Information about the users from whom you want to remove permissions for the resource.
- image
Id String - The ID of the OMI you want to modify.
- image
Launch StringPermission Id - permission
Additions Property Map - Information about the users to whom you want to give permissions for the resource.
- permission
Removals Property Map - Information about the users from whom you want to remove permissions for the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ImageLaunchPermission resource produces the following output properties:
- Description string
- The description of the OMI.
- Id string
- The provider-assigned unique ID for this managed resource.
- Permissions
To List<ImageLaunches Launch Permission Permissions To Launch> - Permissions for the resource.
- Request
Id string
- Description string
- The description of the OMI.
- Id string
- The provider-assigned unique ID for this managed resource.
- Permissions
To []ImageLaunches Launch Permission Permissions To Launch - Permissions for the resource.
- Request
Id string
- description String
- The description of the OMI.
- id String
- The provider-assigned unique ID for this managed resource.
- permissions
To List<ImageLaunches Launch Permission Permissions To Launch> - Permissions for the resource.
- request
Id String
- description string
- The description of the OMI.
- id string
- The provider-assigned unique ID for this managed resource.
- permissions
To ImageLaunches Launch Permission Permissions To Launch[] - Permissions for the resource.
- request
Id string
- description str
- The description of the OMI.
- id str
- The provider-assigned unique ID for this managed resource.
- permissions_
to_ Sequence[Imagelaunches Launch Permission Permissions To Launch] - Permissions for the resource.
- request_
id str
- description String
- The description of the OMI.
- id String
- The provider-assigned unique ID for this managed resource.
- permissions
To List<Property Map>Launches - Permissions for the resource.
- request
Id String
Look up Existing ImageLaunchPermission Resource
Get an existing ImageLaunchPermission resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ImageLaunchPermissionState, opts?: CustomResourceOptions): ImageLaunchPermission
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
image_id: Optional[str] = None,
image_launch_permission_id: Optional[str] = None,
permission_additions: Optional[ImageLaunchPermissionPermissionAdditionsArgs] = None,
permission_removals: Optional[ImageLaunchPermissionPermissionRemovalsArgs] = None,
permissions_to_launches: Optional[Sequence[ImageLaunchPermissionPermissionsToLaunchArgs]] = None,
request_id: Optional[str] = None) -> ImageLaunchPermission
func GetImageLaunchPermission(ctx *Context, name string, id IDInput, state *ImageLaunchPermissionState, opts ...ResourceOption) (*ImageLaunchPermission, error)
public static ImageLaunchPermission Get(string name, Input<string> id, ImageLaunchPermissionState? state, CustomResourceOptions? opts = null)
public static ImageLaunchPermission get(String name, Output<String> id, ImageLaunchPermissionState state, CustomResourceOptions options)
resources: _: type: outscale:ImageLaunchPermission get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- The description of the OMI.
- Image
Id string - The ID of the OMI you want to modify.
- Image
Launch stringPermission Id - Permission
Additions ImageLaunch Permission Permission Additions - Information about the users to whom you want to give permissions for the resource.
- Permission
Removals ImageLaunch Permission Permission Removals - Information about the users from whom you want to remove permissions for the resource.
- Permissions
To List<ImageLaunches Launch Permission Permissions To Launch> - Permissions for the resource.
- Request
Id string
- Description string
- The description of the OMI.
- Image
Id string - The ID of the OMI you want to modify.
- Image
Launch stringPermission Id - Permission
Additions ImageLaunch Permission Permission Additions Args - Information about the users to whom you want to give permissions for the resource.
- Permission
Removals ImageLaunch Permission Permission Removals Args - Information about the users from whom you want to remove permissions for the resource.
- Permissions
To []ImageLaunches Launch Permission Permissions To Launch Args - Permissions for the resource.
- Request
Id string
- description String
- The description of the OMI.
- image
Id String - The ID of the OMI you want to modify.
- image
Launch StringPermission Id - permission
Additions ImageLaunch Permission Permission Additions - Information about the users to whom you want to give permissions for the resource.
- permission
Removals ImageLaunch Permission Permission Removals - Information about the users from whom you want to remove permissions for the resource.
- permissions
To List<ImageLaunches Launch Permission Permissions To Launch> - Permissions for the resource.
- request
Id String
- description string
- The description of the OMI.
- image
Id string - The ID of the OMI you want to modify.
- image
Launch stringPermission Id - permission
Additions ImageLaunch Permission Permission Additions - Information about the users to whom you want to give permissions for the resource.
- permission
Removals ImageLaunch Permission Permission Removals - Information about the users from whom you want to remove permissions for the resource.
- permissions
To ImageLaunches Launch Permission Permissions To Launch[] - Permissions for the resource.
- request
Id string
- description str
- The description of the OMI.
- image_
id str - The ID of the OMI you want to modify.
- image_
launch_ strpermission_ id - permission_
additions ImageLaunch Permission Permission Additions Args - Information about the users to whom you want to give permissions for the resource.
- permission_
removals ImageLaunch Permission Permission Removals Args - Information about the users from whom you want to remove permissions for the resource.
- permissions_
to_ Sequence[Imagelaunches Launch Permission Permissions To Launch Args] - Permissions for the resource.
- request_
id str
- description String
- The description of the OMI.
- image
Id String - The ID of the OMI you want to modify.
- image
Launch StringPermission Id - permission
Additions Property Map - Information about the users to whom you want to give permissions for the resource.
- permission
Removals Property Map - Information about the users from whom you want to remove permissions for the resource.
- permissions
To List<Property Map>Launches - Permissions for the resource.
- request
Id String
Supporting Types
ImageLaunchPermissionPermissionAdditions, ImageLaunchPermissionPermissionAdditionsArgs
- Account
Ids List<string> - The account ID of one or more users to whom you want to give permissions.
- Global
Permission string - If true, the resource is public. If false, the resource is private.
- Account
Ids []string - The account ID of one or more users to whom you want to give permissions.
- Global
Permission string - If true, the resource is public. If false, the resource is private.
- account
Ids List<String> - The account ID of one or more users to whom you want to give permissions.
- global
Permission String - If true, the resource is public. If false, the resource is private.
- account
Ids string[] - The account ID of one or more users to whom you want to give permissions.
- global
Permission string - If true, the resource is public. If false, the resource is private.
- account_
ids Sequence[str] - The account ID of one or more users to whom you want to give permissions.
- global_
permission str - If true, the resource is public. If false, the resource is private.
- account
Ids List<String> - The account ID of one or more users to whom you want to give permissions.
- global
Permission String - If true, the resource is public. If false, the resource is private.
ImageLaunchPermissionPermissionRemovals, ImageLaunchPermissionPermissionRemovalsArgs
- Account
Ids List<string> - The account ID of one or more users from whom you want to remove permissions.
- Global
Permission string - If true, the resource is public. If false, the resource is private.
- Account
Ids []string - The account ID of one or more users from whom you want to remove permissions.
- Global
Permission string - If true, the resource is public. If false, the resource is private.
- account
Ids List<String> - The account ID of one or more users from whom you want to remove permissions.
- global
Permission String - If true, the resource is public. If false, the resource is private.
- account
Ids string[] - The account ID of one or more users from whom you want to remove permissions.
- global
Permission string - If true, the resource is public. If false, the resource is private.
- account_
ids Sequence[str] - The account ID of one or more users from whom you want to remove permissions.
- global_
permission str - If true, the resource is public. If false, the resource is private.
- account
Ids List<String> - The account ID of one or more users from whom you want to remove permissions.
- global
Permission String - If true, the resource is public. If false, the resource is private.
ImageLaunchPermissionPermissionsToLaunch, ImageLaunchPermissionPermissionsToLaunchArgs
- Account
Ids List<string> - One or more account IDs that the permission is associated with.
- Global
Permission string - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
additions
) or to make the resource private (if the parent parameter isremovals
). (Response) If true, the resource is public. If false, the resource is private.
- Account
Ids []string - One or more account IDs that the permission is associated with.
- Global
Permission string - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
additions
) or to make the resource private (if the parent parameter isremovals
). (Response) If true, the resource is public. If false, the resource is private.
- account
Ids List<String> - One or more account IDs that the permission is associated with.
- global
Permission String - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
additions
) or to make the resource private (if the parent parameter isremovals
). (Response) If true, the resource is public. If false, the resource is private.
- account
Ids string[] - One or more account IDs that the permission is associated with.
- global
Permission string - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
additions
) or to make the resource private (if the parent parameter isremovals
). (Response) If true, the resource is public. If false, the resource is private.
- account_
ids Sequence[str] - One or more account IDs that the permission is associated with.
- global_
permission str - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
additions
) or to make the resource private (if the parent parameter isremovals
). (Response) If true, the resource is public. If false, the resource is private.
- account
Ids List<String> - One or more account IDs that the permission is associated with.
- global
Permission String - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
additions
) or to make the resource private (if the parent parameter isremovals
). (Response) If true, the resource is public. If false, the resource is private.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.