Class: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/file_v1beta1/classes.rb,
generated/google/apis/file_v1beta1/representations.rb,
generated/google/apis/file_v1beta1/representations.rb

Overview

RolloutMetadata for an actuation instance. It maps to a single RolloutType.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata

Returns a new instance of GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata



451
452
453
# File 'generated/google/apis/file_v1beta1/classes.rb', line 451

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#notificationGoogle::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata

NotificationMetadata is the notification state for an instance. Corresponds to the JSON property notification



439
440
441
# File 'generated/google/apis/file_v1beta1/classes.rb', line 439

def notification
  @notification
end

#release_nameString

The last Release that has been applied to the instance. Corresponds to the JSON property releaseName

Returns:

  • (String)


444
445
446
# File 'generated/google/apis/file_v1beta1/classes.rb', line 444

def release_name
  @release_name
end

#rollout_nameString

The last rollout that has been applied to the instance. Corresponds to the JSON property rolloutName

Returns:

  • (String)


449
450
451
# File 'generated/google/apis/file_v1beta1/classes.rb', line 449

def rollout_name
  @rollout_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



456
457
458
459
460
# File 'generated/google/apis/file_v1beta1/classes.rb', line 456

def update!(**args)
  @notification = args[:notification] if args.key?(:notification)
  @release_name = args[:release_name] if args.key?(:release_name)
  @rollout_name = args[:rollout_name] if args.key?(:rollout_name)
end