Class: Google::Apis::ComposerV1beta1::ScheduledSnapshotsConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb

Overview

The configuration for scheduled snapshot creation mechanism.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ScheduledSnapshotsConfig

Returns a new instance of ScheduledSnapshotsConfig.



1913
1914
1915
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1913

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

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Optional. Whether scheduled snapshots creation is enabled. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


1891
1892
1893
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1891

def enabled
  @enabled
end

#snapshot_creation_scheduleString

Optional. The cron expression representing the time when snapshots creation mechanism runs. This field is subject to additional validation around frequency of execution. Corresponds to the JSON property snapshotCreationSchedule

Returns:

  • (String)


1899
1900
1901
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1899

def snapshot_creation_schedule
  @snapshot_creation_schedule
end

#snapshot_locationString

Optional. The Cloud Storage location for storing automatically created snapshots. Corresponds to the JSON property snapshotLocation

Returns:

  • (String)


1905
1906
1907
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1905

def snapshot_location
  @snapshot_location
end

#time_zoneString

Optional. Time zone that sets the context to interpret snapshot_creation_schedule. Corresponds to the JSON property timeZone

Returns:

  • (String)


1911
1912
1913
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1911

def time_zone
  @time_zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1918
1919
1920
1921
1922
1923
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1918

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @snapshot_creation_schedule = args[:snapshot_creation_schedule] if args.key?(:snapshot_creation_schedule)
  @snapshot_location = args[:snapshot_location] if args.key?(:snapshot_location)
  @time_zone = args[:time_zone] if args.key?(:time_zone)
end