Class: Google::Apis::MigrationcenterV1alpha1::BatchDeleteAssetsRequest
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::BatchDeleteAssetsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
A request to delete a list of asset.
Instance Attribute Summary collapse
-
#allow_missing ⇒ Boolean
(also: #allow_missing?)
Optional.
-
#names ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BatchDeleteAssetsRequest
constructor
A new instance of BatchDeleteAssetsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BatchDeleteAssetsRequest
Returns a new instance of BatchDeleteAssetsRequest.
614 615 616 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 614 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allow_missing ⇒ Boolean Also known as: allow_missing?
Optional. When this value is set to true the request is a no-op for non-
existing assets. See https://google.aip.dev/135#delete-if-existing for
additional details. Default value is false.
Corresponds to the JSON property allowMissing
604 605 606 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 604 def allow_missing @allow_missing end |
#names ⇒ Array<String>
Required. The IDs of the assets to delete. A maximum of 10 assets can be
deleted in a batch. format: projects/project/locations/location/asset/
name.
Corresponds to the JSON property names
612 613 614 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 612 def names @names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
619 620 621 622 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 619 def update!(**args) @allow_missing = args[:allow_missing] if args.key?(:allow_missing) @names = args[:names] if args.key?(:names) end |