Class: Google::Apis::ComputeBeta::BulkInsertDiskResource
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::BulkInsertDiskResource
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
A transient resource used in compute.disks.bulkInsert and compute.regionDisks.bulkInsert. It is only used to process requests and is not persisted.
Instance Attribute Summary collapse
-
#source_consistency_group_policy ⇒ String
The URL of the DiskConsistencyGroupPolicy for the group of disks to clone.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BulkInsertDiskResource
constructor
A new instance of BulkInsertDiskResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BulkInsertDiskResource
Returns a new instance of BulkInsertDiskResource.
7150 7151 7152 |
# File 'lib/google/apis/compute_beta/classes.rb', line 7150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#source_consistency_group_policy ⇒ String
The URL of the DiskConsistencyGroupPolicy for the group of disks to clone. This may be a full or partial URL, such as:
- https://www.googleapis.com/compute/v1/projects/project/regions/region/ resourcePolicies/resourcePolicy
- projects/project/regions/region/resourcePolicies/resourcePolicy
-
regions/region/resourcePolicies/resourcePolicy
Corresponds to the JSON property sourceConsistencyGroupPolicy
7148 7149 7150 |
# File 'lib/google/apis/compute_beta/classes.rb', line 7148 def source_consistency_group_policy @source_consistency_group_policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7155 7156 7157 |
# File 'lib/google/apis/compute_beta/classes.rb', line 7155 def update!(**args) @source_consistency_group_policy = args[:source_consistency_group_policy] if args.key?(:source_consistency_group_policy) end |