Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions api/v1beta1/azuremachine_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ type AzureMachineSpec struct {

// CapacityReservationGroupID specifies the capacity reservation group resource id that should be
// used for allocating the virtual machine.
// The field size should be greater than 0 and the field input must start with '/'.
// The input for capacityReservationGroupID must be similar to '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}'.
// The keys which are used should be among 'subscriptions', 'providers' and 'resourcegroups' followed by valid ID or names respectively.
// It is optional but may not be changed once set.
// +optional
CapacityReservationGroupID *string `json:"capacityReservationGroupID,omitempty"`
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ spec:
description: |-
CapacityReservationGroupID specifies the capacity reservation group resource id that should be
used for allocating the virtual machine.
The field size should be greater than 0 and the field input must start with '/'.
The input for capacityReservationGroupID must be similar to '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}'.
The keys which are used should be among 'subscriptions', 'providers' and 'resourcegroups' followed by valid ID or names respectively.
It is optional but may not be changed once set.
type: string
dataDisks:
description: DataDisk specifies the parameters that are used to add
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ spec:
description: |-
CapacityReservationGroupID specifies the capacity reservation group resource id that should be
used for allocating the virtual machine.
The field size should be greater than 0 and the field input must start with '/'.
The input for capacityReservationGroupID must be similar to '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}'.
The keys which are used should be among 'subscriptions', 'providers' and 'resourcegroups' followed by valid ID or names respectively.
It is optional but may not be changed once set.
type: string
dataDisks:
description: DataDisk specifies the parameters that are used
Expand Down