class Google::Apis::BaremetalsolutionV1alpha1::ProvisioningConfig

An provisioning configuration.

Attributes

instances[RW]

Instances to be created. Corresponds to the JSON property `instances` @return [Array<Google::Apis::BaremetalsolutionV1alpha1::InstanceConfig>]

networks[RW]

Networks to be created. Corresponds to the JSON property `networks` @return [Array<Google::Apis::BaremetalsolutionV1alpha1::NetworkConfig>]

ticket_id[RW]

A reference to track the request. Corresponds to the JSON property `ticketId` @return [String]

volumes[RW]

Volumes to be created. Corresponds to the JSON property `volumes` @return [Array<Google::Apis::BaremetalsolutionV1alpha1::VolumeConfig>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/baremetalsolution_v1alpha1/classes.rb, line 688
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/baremetalsolution_v1alpha1/classes.rb, line 693
def update!(**args)
  @instances = args[:instances] if args.key?(:instances)
  @networks = args[:networks] if args.key?(:networks)
  @ticket_id = args[:ticket_id] if args.key?(:ticket_id)
  @volumes = args[:volumes] if args.key?(:volumes)
end