Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.compute/v1.Reservation
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new reservation. For more information, read Reserving zonal resources.
Create Reservation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Reservation(name: string, args?: ReservationArgs, opts?: CustomResourceOptions);
@overload
def Reservation(resource_name: str,
args: Optional[ReservationInitArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Reservation(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
request_id: Optional[str] = None,
resource_policies: Optional[Mapping[str, str]] = None,
share_settings: Optional[ShareSettingsArgs] = None,
specific_reservation: Optional[AllocationSpecificSKUReservationArgs] = None,
specific_reservation_required: Optional[bool] = None,
zone: Optional[str] = None)
func NewReservation(ctx *Context, name string, args *ReservationArgs, opts ...ResourceOption) (*Reservation, error)
public Reservation(string name, ReservationArgs? args = null, CustomResourceOptions? opts = null)
public Reservation(String name, ReservationArgs args)
public Reservation(String name, ReservationArgs args, CustomResourceOptions options)
type: google-native:compute/v1:Reservation
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 ReservationArgs
- 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 ReservationInitArgs
- 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 ReservationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReservationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReservationArgs
- 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 examplereservationResourceResourceFromComputev1 = new GoogleNative.Compute.V1.Reservation("examplereservationResourceResourceFromComputev1", new()
{
Description = "string",
Name = "string",
Project = "string",
RequestId = "string",
ResourcePolicies =
{
{ "string", "string" },
},
ShareSettings = new GoogleNative.Compute.V1.Inputs.ShareSettingsArgs
{
ProjectMap =
{
{ "string", "string" },
},
ShareType = GoogleNative.Compute.V1.ShareSettingsShareType.Local,
},
SpecificReservation = new GoogleNative.Compute.V1.Inputs.AllocationSpecificSKUReservationArgs
{
Count = "string",
InstanceProperties = new GoogleNative.Compute.V1.Inputs.AllocationSpecificSKUAllocationReservedInstancePropertiesArgs
{
GuestAccelerators = new[]
{
new GoogleNative.Compute.V1.Inputs.AcceleratorConfigArgs
{
AcceleratorCount = 0,
AcceleratorType = "string",
},
},
LocalSsds = new[]
{
new GoogleNative.Compute.V1.Inputs.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskArgs
{
DiskSizeGb = "string",
Interface = GoogleNative.Compute.V1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface.Nvme,
},
},
LocationHint = "string",
MachineType = "string",
MinCpuPlatform = "string",
},
SourceInstanceTemplate = "string",
},
SpecificReservationRequired = false,
Zone = "string",
});
example, err := computev1.NewReservation(ctx, "examplereservationResourceResourceFromComputev1", &computev1.ReservationArgs{
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Project: pulumi.String("string"),
RequestId: pulumi.String("string"),
ResourcePolicies: pulumi.StringMap{
"string": pulumi.String("string"),
},
ShareSettings: &compute.ShareSettingsArgs{
ProjectMap: pulumi.StringMap{
"string": pulumi.String("string"),
},
ShareType: computev1.ShareSettingsShareTypeLocal,
},
SpecificReservation: &compute.AllocationSpecificSKUReservationArgs{
Count: pulumi.String("string"),
InstanceProperties: &compute.AllocationSpecificSKUAllocationReservedInstancePropertiesArgs{
GuestAccelerators: compute.AcceleratorConfigArray{
&compute.AcceleratorConfigArgs{
AcceleratorCount: pulumi.Int(0),
AcceleratorType: pulumi.String("string"),
},
},
LocalSsds: compute.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskArray{
&compute.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskArgs{
DiskSizeGb: pulumi.String("string"),
Interface: computev1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfaceNvme,
},
},
LocationHint: pulumi.String("string"),
MachineType: pulumi.String("string"),
MinCpuPlatform: pulumi.String("string"),
},
SourceInstanceTemplate: pulumi.String("string"),
},
SpecificReservationRequired: pulumi.Bool(false),
Zone: pulumi.String("string"),
})
var examplereservationResourceResourceFromComputev1 = new Reservation("examplereservationResourceResourceFromComputev1", ReservationArgs.builder()
.description("string")
.name("string")
.project("string")
.requestId("string")
.resourcePolicies(Map.of("string", "string"))
.shareSettings(ShareSettingsArgs.builder()
.projectMap(Map.of("string", "string"))
.shareType("LOCAL")
.build())
.specificReservation(AllocationSpecificSKUReservationArgs.builder()
.count("string")
.instanceProperties(AllocationSpecificSKUAllocationReservedInstancePropertiesArgs.builder()
.guestAccelerators(AcceleratorConfigArgs.builder()
.acceleratorCount(0)
.acceleratorType("string")
.build())
.localSsds(AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskArgs.builder()
.diskSizeGb("string")
.interface_("NVME")
.build())
.locationHint("string")
.machineType("string")
.minCpuPlatform("string")
.build())
.sourceInstanceTemplate("string")
.build())
.specificReservationRequired(false)
.zone("string")
.build());
examplereservation_resource_resource_from_computev1 = google_native.compute.v1.Reservation("examplereservationResourceResourceFromComputev1",
description="string",
name="string",
project="string",
request_id="string",
resource_policies={
"string": "string",
},
share_settings=google_native.compute.v1.ShareSettingsArgs(
project_map={
"string": "string",
},
share_type=google_native.compute.v1.ShareSettingsShareType.LOCAL,
),
specific_reservation=google_native.compute.v1.AllocationSpecificSKUReservationArgs(
count="string",
instance_properties=google_native.compute.v1.AllocationSpecificSKUAllocationReservedInstancePropertiesArgs(
guest_accelerators=[google_native.compute.v1.AcceleratorConfigArgs(
accelerator_count=0,
accelerator_type="string",
)],
local_ssds=[google_native.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskArgs(
disk_size_gb="string",
interface=google_native.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface.NVME,
)],
location_hint="string",
machine_type="string",
min_cpu_platform="string",
),
source_instance_template="string",
),
specific_reservation_required=False,
zone="string")
const examplereservationResourceResourceFromComputev1 = new google_native.compute.v1.Reservation("examplereservationResourceResourceFromComputev1", {
description: "string",
name: "string",
project: "string",
requestId: "string",
resourcePolicies: {
string: "string",
},
shareSettings: {
projectMap: {
string: "string",
},
shareType: google_native.compute.v1.ShareSettingsShareType.Local,
},
specificReservation: {
count: "string",
instanceProperties: {
guestAccelerators: [{
acceleratorCount: 0,
acceleratorType: "string",
}],
localSsds: [{
diskSizeGb: "string",
"interface": google_native.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface.Nvme,
}],
locationHint: "string",
machineType: "string",
minCpuPlatform: "string",
},
sourceInstanceTemplate: "string",
},
specificReservationRequired: false,
zone: "string",
});
type: google-native:compute/v1:Reservation
properties:
description: string
name: string
project: string
requestId: string
resourcePolicies:
string: string
shareSettings:
projectMap:
string: string
shareType: LOCAL
specificReservation:
count: string
instanceProperties:
guestAccelerators:
- acceleratorCount: 0
acceleratorType: string
localSsds:
- diskSizeGb: string
interface: NVME
locationHint: string
machineType: string
minCpuPlatform: string
sourceInstanceTemplate: string
specificReservationRequired: false
zone: string
Reservation 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 Reservation resource accepts the following input properties:
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Name string
- The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Project string
- Request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- Resource
Policies Dictionary<string, string> - Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.
- Pulumi.
Google Native. Compute. V1. Inputs. Share Settings - Specify share-settings to create a shared reservation. This property is optional. For more information about the syntax and options for this field and its subfields, see the guide for creating a shared reservation.
- Specific
Reservation Pulumi.Google Native. Compute. V1. Inputs. Allocation Specific SKUReservation - Reservation for instances with specific machine shapes.
- Specific
Reservation boolRequired - Indicates whether the reservation can be consumed by VMs with affinity for "any" reservation. If the field is set, then only VMs that target the reservation by name can consume from this reservation.
- Zone string
- Zone in which the reservation resides. A zone must be provided if the reservation is created within a commitment.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Name string
- The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Project string
- Request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- Resource
Policies map[string]string - Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.
- Share
Settings Args - Specify share-settings to create a shared reservation. This property is optional. For more information about the syntax and options for this field and its subfields, see the guide for creating a shared reservation.
- Specific
Reservation AllocationSpecific SKUReservation Args - Reservation for instances with specific machine shapes.
- Specific
Reservation boolRequired - Indicates whether the reservation can be consumed by VMs with affinity for "any" reservation. If the field is set, then only VMs that target the reservation by name can consume from this reservation.
- Zone string
- Zone in which the reservation resides. A zone must be provided if the reservation is created within a commitment.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- name String
- The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - project String
- request
Id String - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource
Policies Map<String,String> - Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.
- Share
Settings - Specify share-settings to create a shared reservation. This property is optional. For more information about the syntax and options for this field and its subfields, see the guide for creating a shared reservation.
- specific
Reservation AllocationSpecific SKUReservation - Reservation for instances with specific machine shapes.
- specific
Reservation BooleanRequired - Indicates whether the reservation can be consumed by VMs with affinity for "any" reservation. If the field is set, then only VMs that target the reservation by name can consume from this reservation.
- zone String
- Zone in which the reservation resides. A zone must be provided if the reservation is created within a commitment.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- name string
- The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - project string
- request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource
Policies {[key: string]: string} - Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.
- Share
Settings - Specify share-settings to create a shared reservation. This property is optional. For more information about the syntax and options for this field and its subfields, see the guide for creating a shared reservation.
- specific
Reservation AllocationSpecific SKUReservation - Reservation for instances with specific machine shapes.
- specific
Reservation booleanRequired - Indicates whether the reservation can be consumed by VMs with affinity for "any" reservation. If the field is set, then only VMs that target the reservation by name can consume from this reservation.
- zone string
- Zone in which the reservation resides. A zone must be provided if the reservation is created within a commitment.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- name str
- The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - project str
- request_
id str - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource_
policies Mapping[str, str] - Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.
- Share
Settings Args - Specify share-settings to create a shared reservation. This property is optional. For more information about the syntax and options for this field and its subfields, see the guide for creating a shared reservation.
- specific_
reservation AllocationSpecific SKUReservation Args - Reservation for instances with specific machine shapes.
- specific_
reservation_ boolrequired - Indicates whether the reservation can be consumed by VMs with affinity for "any" reservation. If the field is set, then only VMs that target the reservation by name can consume from this reservation.
- zone str
- Zone in which the reservation resides. A zone must be provided if the reservation is created within a commitment.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- name String
- The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - project String
- request
Id String - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource
Policies Map<String> - Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.
- Property Map
- Specify share-settings to create a shared reservation. This property is optional. For more information about the syntax and options for this field and its subfields, see the guide for creating a shared reservation.
- specific
Reservation Property Map - Reservation for instances with specific machine shapes.
- specific
Reservation BooleanRequired - Indicates whether the reservation can be consumed by VMs with affinity for "any" reservation. If the field is set, then only VMs that target the reservation by name can consume from this reservation.
- zone String
- Zone in which the reservation resides. A zone must be provided if the reservation is created within a commitment.
Outputs
All input properties are implicitly available as output properties. Additionally, the Reservation resource produces the following output properties:
- Commitment string
- Full or partial URL to a parent commitment. This field displays for reservations that are tied to a commitment.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#reservations for reservations.
- Resource
Status Pulumi.Google Native. Compute. V1. Outputs. Allocation Resource Status Response - Status information for Reservation resource.
- Satisfies
Pzs bool - Reserved for future use.
- Self
Link string - Server-defined fully-qualified URL for this resource.
- Status string
- The status of the reservation.
- Commitment string
- Full or partial URL to a parent commitment. This field displays for reservations that are tied to a commitment.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#reservations for reservations.
- Resource
Status AllocationResource Status Response - Status information for Reservation resource.
- Satisfies
Pzs bool - Reserved for future use.
- Self
Link string - Server-defined fully-qualified URL for this resource.
- Status string
- The status of the reservation.
- commitment String
- Full or partial URL to a parent commitment. This field displays for reservations that are tied to a commitment.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#reservations for reservations.
- resource
Status AllocationResource Status Response - Status information for Reservation resource.
- satisfies
Pzs Boolean - Reserved for future use.
- self
Link String - Server-defined fully-qualified URL for this resource.
- status String
- The status of the reservation.
- commitment string
- Full or partial URL to a parent commitment. This field displays for reservations that are tied to a commitment.
- creation
Timestamp string - Creation timestamp in RFC3339 text format.
- id string
- The provider-assigned unique ID for this managed resource.
- kind string
- Type of the resource. Always compute#reservations for reservations.
- resource
Status AllocationResource Status Response - Status information for Reservation resource.
- satisfies
Pzs boolean - Reserved for future use.
- self
Link string - Server-defined fully-qualified URL for this resource.
- status string
- The status of the reservation.
- commitment str
- Full or partial URL to a parent commitment. This field displays for reservations that are tied to a commitment.
- creation_
timestamp str - Creation timestamp in RFC3339 text format.
- id str
- The provider-assigned unique ID for this managed resource.
- kind str
- Type of the resource. Always compute#reservations for reservations.
- resource_
status AllocationResource Status Response - Status information for Reservation resource.
- satisfies_
pzs bool - Reserved for future use.
- self_
link str - Server-defined fully-qualified URL for this resource.
- status str
- The status of the reservation.
- commitment String
- Full or partial URL to a parent commitment. This field displays for reservations that are tied to a commitment.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#reservations for reservations.
- resource
Status Property Map - Status information for Reservation resource.
- satisfies
Pzs Boolean - Reserved for future use.
- self
Link String - Server-defined fully-qualified URL for this resource.
- status String
- The status of the reservation.
Supporting Types
AcceleratorConfig, AcceleratorConfigArgs
- Accelerator
Count int - The number of the guest accelerator cards exposed to this instance.
- Accelerator
Type string - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- Accelerator
Count int - The number of the guest accelerator cards exposed to this instance.
- Accelerator
Type string - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator
Count Integer - The number of the guest accelerator cards exposed to this instance.
- accelerator
Type String - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator
Count number - The number of the guest accelerator cards exposed to this instance.
- accelerator
Type string - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator_
count int - The number of the guest accelerator cards exposed to this instance.
- accelerator_
type str - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator
Count Number - The number of the guest accelerator cards exposed to this instance.
- accelerator
Type String - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
AcceleratorConfigResponse, AcceleratorConfigResponseArgs
- Accelerator
Count int - The number of the guest accelerator cards exposed to this instance.
- Accelerator
Type string - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- Accelerator
Count int - The number of the guest accelerator cards exposed to this instance.
- Accelerator
Type string - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator
Count Integer - The number of the guest accelerator cards exposed to this instance.
- accelerator
Type String - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator
Count number - The number of the guest accelerator cards exposed to this instance.
- accelerator
Type string - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator_
count int - The number of the guest accelerator cards exposed to this instance.
- accelerator_
type str - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
- accelerator
Count Number - The number of the guest accelerator cards exposed to this instance.
- accelerator
Type String - Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.
AllocationResourceStatusResponse, AllocationResourceStatusResponseArgs
- Specific
Sku Pulumi.Allocation Google Native. Compute. V1. Inputs. Allocation Resource Status Specific SKUAllocation Response - Allocation Properties of this reservation.
- Specific
Sku AllocationAllocation Resource Status Specific SKUAllocation Response - Allocation Properties of this reservation.
- specific
Sku AllocationAllocation Resource Status Specific SKUAllocation Response - Allocation Properties of this reservation.
- specific
Sku AllocationAllocation Resource Status Specific SKUAllocation Response - Allocation Properties of this reservation.
- specific_
sku_ Allocationallocation Resource Status Specific SKUAllocation Response - Allocation Properties of this reservation.
- specific
Sku Property MapAllocation - Allocation Properties of this reservation.
AllocationResourceStatusSpecificSKUAllocationResponse, AllocationResourceStatusSpecificSKUAllocationResponseArgs
- Source
Instance stringTemplate Id - ID of the instance template used to populate reservation properties.
- Source
Instance stringTemplate Id - ID of the instance template used to populate reservation properties.
- source
Instance StringTemplate Id - ID of the instance template used to populate reservation properties.
- source
Instance stringTemplate Id - ID of the instance template used to populate reservation properties.
- source_
instance_ strtemplate_ id - ID of the instance template used to populate reservation properties.
- source
Instance StringTemplate Id - ID of the instance template used to populate reservation properties.
AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk, AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskArgs
- Disk
Size stringGb - Specifies the size of the disk in base-2 GB.
- Interface
Pulumi.
Google Native. Compute. V1. Allocation Specific SKUAllocation Allocated Instance Properties Reserved Disk Interface - Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- Disk
Size stringGb - Specifies the size of the disk in base-2 GB.
- Interface
Allocation
Specific SKUAllocation Allocated Instance Properties Reserved Disk Interface - Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk
Size StringGb - Specifies the size of the disk in base-2 GB.
- interface_
Allocation
Specific SKUAllocation Allocated Instance Properties Reserved Disk Interface - Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk
Size stringGb - Specifies the size of the disk in base-2 GB.
- interface
Allocation
Specific SKUAllocation Allocated Instance Properties Reserved Disk Interface - Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk_
size_ strgb - Specifies the size of the disk in base-2 GB.
- interface
Allocation
Specific SKUAllocation Allocated Instance Properties Reserved Disk Interface - Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk
Size StringGb - Specifies the size of the disk in base-2 GB.
- interface "NVME" | "SCSI"
- Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface, AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfaceArgs
- Nvme
- NVME
- Scsi
- SCSI
- Allocation
Specific SKUAllocation Allocated Instance Properties Reserved Disk Interface Nvme - NVME
- Allocation
Specific SKUAllocation Allocated Instance Properties Reserved Disk Interface Scsi - SCSI
- Nvme
- NVME
- Scsi
- SCSI
- Nvme
- NVME
- Scsi
- SCSI
- NVME
- NVME
- SCSI
- SCSI
- "NVME"
- NVME
- "SCSI"
- SCSI
AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskResponse, AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskResponseArgs
- Disk
Size stringGb - Specifies the size of the disk in base-2 GB.
- Interface string
- Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- Disk
Size stringGb - Specifies the size of the disk in base-2 GB.
- Interface string
- Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk
Size StringGb - Specifies the size of the disk in base-2 GB.
- interface_ String
- Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk
Size stringGb - Specifies the size of the disk in base-2 GB.
- interface string
- Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk_
size_ strgb - Specifies the size of the disk in base-2 GB.
- interface str
- Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
- disk
Size StringGb - Specifies the size of the disk in base-2 GB.
- interface String
- Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.
AllocationSpecificSKUAllocationReservedInstanceProperties, AllocationSpecificSKUAllocationReservedInstancePropertiesArgs
- Guest
Accelerators List<Pulumi.Google Native. Compute. V1. Inputs. Accelerator Config> - Specifies accelerator type and count.
- Local
Ssds List<Pulumi.Google Native. Compute. V1. Inputs. Allocation Specific SKUAllocation Allocated Instance Properties Reserved Disk> - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- Location
Hint string - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- Machine
Type string - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- Min
Cpu stringPlatform - Minimum cpu platform the reservation.
- Guest
Accelerators []AcceleratorConfig - Specifies accelerator type and count.
- Local
Ssds []AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- Location
Hint string - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- Machine
Type string - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- Min
Cpu stringPlatform - Minimum cpu platform the reservation.
- guest
Accelerators List<AcceleratorConfig> - Specifies accelerator type and count.
- local
Ssds List<AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk> - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location
Hint String - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine
Type String - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min
Cpu StringPlatform - Minimum cpu platform the reservation.
- guest
Accelerators AcceleratorConfig[] - Specifies accelerator type and count.
- local
Ssds AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk[] - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location
Hint string - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine
Type string - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min
Cpu stringPlatform - Minimum cpu platform the reservation.
- guest_
accelerators Sequence[AcceleratorConfig] - Specifies accelerator type and count.
- local_
ssds Sequence[AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk] - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location_
hint str - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine_
type str - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min_
cpu_ strplatform - Minimum cpu platform the reservation.
- guest
Accelerators List<Property Map> - Specifies accelerator type and count.
- local
Ssds List<Property Map> - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location
Hint String - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine
Type String - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min
Cpu StringPlatform - Minimum cpu platform the reservation.
AllocationSpecificSKUAllocationReservedInstancePropertiesResponse, AllocationSpecificSKUAllocationReservedInstancePropertiesResponseArgs
- Guest
Accelerators List<Pulumi.Google Native. Compute. V1. Inputs. Accelerator Config Response> - Specifies accelerator type and count.
- Local
Ssds List<Pulumi.Google Native. Compute. V1. Inputs. Allocation Specific SKUAllocation Allocated Instance Properties Reserved Disk Response> - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- Location
Hint string - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- Machine
Type string - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- Min
Cpu stringPlatform - Minimum cpu platform the reservation.
- Guest
Accelerators []AcceleratorConfig Response - Specifies accelerator type and count.
- Local
Ssds []AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk Response - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- Location
Hint string - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- Machine
Type string - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- Min
Cpu stringPlatform - Minimum cpu platform the reservation.
- guest
Accelerators List<AcceleratorConfig Response> - Specifies accelerator type and count.
- local
Ssds List<AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk Response> - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location
Hint String - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine
Type String - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min
Cpu StringPlatform - Minimum cpu platform the reservation.
- guest
Accelerators AcceleratorConfig Response[] - Specifies accelerator type and count.
- local
Ssds AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk Response[] - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location
Hint string - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine
Type string - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min
Cpu stringPlatform - Minimum cpu platform the reservation.
- guest_
accelerators Sequence[AcceleratorConfig Response] - Specifies accelerator type and count.
- local_
ssds Sequence[AllocationSpecific SKUAllocation Allocated Instance Properties Reserved Disk Response] - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location_
hint str - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine_
type str - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min_
cpu_ strplatform - Minimum cpu platform the reservation.
- guest
Accelerators List<Property Map> - Specifies accelerator type and count.
- local
Ssds List<Property Map> - Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.
- location
Hint String - An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.
- machine
Type String - Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.
- min
Cpu StringPlatform - Minimum cpu platform the reservation.
AllocationSpecificSKUReservation, AllocationSpecificSKUReservationArgs
- Count string
- Specifies the number of resources that are allocated.
- Instance
Properties Pulumi.Google Native. Compute. V1. Inputs. Allocation Specific SKUAllocation Reserved Instance Properties - The instance properties for the reservation.
- Source
Instance stringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- Count string
- Specifies the number of resources that are allocated.
- Instance
Properties AllocationSpecific SKUAllocation Reserved Instance Properties - The instance properties for the reservation.
- Source
Instance stringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- count String
- Specifies the number of resources that are allocated.
- instance
Properties AllocationSpecific SKUAllocation Reserved Instance Properties - The instance properties for the reservation.
- source
Instance StringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- count string
- Specifies the number of resources that are allocated.
- instance
Properties AllocationSpecific SKUAllocation Reserved Instance Properties - The instance properties for the reservation.
- source
Instance stringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- count str
- Specifies the number of resources that are allocated.
- instance_
properties AllocationSpecific SKUAllocation Reserved Instance Properties - The instance properties for the reservation.
- source_
instance_ strtemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- count String
- Specifies the number of resources that are allocated.
- instance
Properties Property Map - The instance properties for the reservation.
- source
Instance StringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
AllocationSpecificSKUReservationResponse, AllocationSpecificSKUReservationResponseArgs
- Assured
Count string - Indicates how many instances are actually usable currently.
- Count string
- Specifies the number of resources that are allocated.
- In
Use stringCount - Indicates how many instances are in use.
- Instance
Properties Pulumi.Google Native. Compute. V1. Inputs. Allocation Specific SKUAllocation Reserved Instance Properties Response - The instance properties for the reservation.
- Source
Instance stringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- Assured
Count string - Indicates how many instances are actually usable currently.
- Count string
- Specifies the number of resources that are allocated.
- In
Use stringCount - Indicates how many instances are in use.
- Instance
Properties AllocationSpecific SKUAllocation Reserved Instance Properties Response - The instance properties for the reservation.
- Source
Instance stringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- assured
Count String - Indicates how many instances are actually usable currently.
- count String
- Specifies the number of resources that are allocated.
- in
Use StringCount - Indicates how many instances are in use.
- instance
Properties AllocationSpecific SKUAllocation Reserved Instance Properties Response - The instance properties for the reservation.
- source
Instance StringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- assured
Count string - Indicates how many instances are actually usable currently.
- count string
- Specifies the number of resources that are allocated.
- in
Use stringCount - Indicates how many instances are in use.
- instance
Properties AllocationSpecific SKUAllocation Reserved Instance Properties Response - The instance properties for the reservation.
- source
Instance stringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- assured_
count str - Indicates how many instances are actually usable currently.
- count str
- Specifies the number of resources that are allocated.
- in_
use_ strcount - Indicates how many instances are in use.
- instance_
properties AllocationSpecific SKUAllocation Reserved Instance Properties Response - The instance properties for the reservation.
- source_
instance_ strtemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
- assured
Count String - Indicates how many instances are actually usable currently.
- count String
- Specifies the number of resources that are allocated.
- in
Use StringCount - Indicates how many instances are in use.
- instance
Properties Property Map - The instance properties for the reservation.
- source
Instance StringTemplate - Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field. This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template: - https://www.googleapis.com/compute/v1/projects/project /global/instanceTemplates/instanceTemplate - projects/project/global/instanceTemplates/instanceTemplate - global/instanceTemplates/instanceTemplate
ShareSettings, ShareSettingsArgs
- Project
Map Dictionary<string, string> - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- Pulumi.
Google Native. Compute. V1. Share Settings Share Type - Type of sharing for this shared-reservation
- Project
Map map[string]string - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- Share
Settings Share Type - Type of sharing for this shared-reservation
- project
Map Map<String,String> - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- Share
Settings Share Type - Type of sharing for this shared-reservation
- project
Map {[key: string]: string} - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- Share
Settings Share Type - Type of sharing for this shared-reservation
- project_
map Mapping[str, str] - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- Share
Settings Share Type - Type of sharing for this shared-reservation
- project
Map Map<String> - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- "LOCAL" | "ORGANIZATION" | "SHARE_TYPE_UNSPECIFIED" | "SPECIFIC_PROJECTS"
- Type of sharing for this shared-reservation
ShareSettingsResponse, ShareSettingsResponseArgs
- Project
Map Dictionary<string, string> - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- string
- Type of sharing for this shared-reservation
- Project
Map map[string]string - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- string
- Type of sharing for this shared-reservation
- project
Map Map<String,String> - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- String
- Type of sharing for this shared-reservation
- project
Map {[key: string]: string} - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- string
- Type of sharing for this shared-reservation
- project_
map Mapping[str, str] - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- str
- Type of sharing for this shared-reservation
- project
Map Map<String> - A map of project id and project config. This is only valid when share_type's value is SPECIFIC_PROJECTS.
- String
- Type of sharing for this shared-reservation
ShareSettingsShareType, ShareSettingsShareTypeArgs
- Local
- LOCALDefault value.
- Organization
- ORGANIZATIONShared-reservation is open to entire Organization
- Share
Type Unspecified - SHARE_TYPE_UNSPECIFIEDDefault value. This value is unused.
- Specific
Projects - SPECIFIC_PROJECTSShared-reservation is open to specific projects
- Share
Settings Share Type Local - LOCALDefault value.
- Share
Settings Share Type Organization - ORGANIZATIONShared-reservation is open to entire Organization
- Share
Settings Share Type Share Type Unspecified - SHARE_TYPE_UNSPECIFIEDDefault value. This value is unused.
- Share
Settings Share Type Specific Projects - SPECIFIC_PROJECTSShared-reservation is open to specific projects
- Local
- LOCALDefault value.
- Organization
- ORGANIZATIONShared-reservation is open to entire Organization
- Share
Type Unspecified - SHARE_TYPE_UNSPECIFIEDDefault value. This value is unused.
- Specific
Projects - SPECIFIC_PROJECTSShared-reservation is open to specific projects
- Local
- LOCALDefault value.
- Organization
- ORGANIZATIONShared-reservation is open to entire Organization
- Share
Type Unspecified - SHARE_TYPE_UNSPECIFIEDDefault value. This value is unused.
- Specific
Projects - SPECIFIC_PROJECTSShared-reservation is open to specific projects
- LOCAL
- LOCALDefault value.
- ORGANIZATION
- ORGANIZATIONShared-reservation is open to entire Organization
- SHARE_TYPE_UNSPECIFIED
- SHARE_TYPE_UNSPECIFIEDDefault value. This value is unused.
- SPECIFIC_PROJECTS
- SPECIFIC_PROJECTSShared-reservation is open to specific projects
- "LOCAL"
- LOCALDefault value.
- "ORGANIZATION"
- ORGANIZATIONShared-reservation is open to entire Organization
- "SHARE_TYPE_UNSPECIFIED"
- SHARE_TYPE_UNSPECIFIEDDefault value. This value is unused.
- "SPECIFIC_PROJECTS"
- SPECIFIC_PROJECTSShared-reservation is open to specific projects
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.