Class: Google::Apis::MigrationcenterV1alpha1::BatchDeleteAssetsRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BatchDeleteAssetsRequest

Returns a new instance of BatchDeleteAssetsRequest.



1664
1665
1666
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1664

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

Instance Attribute Details

#allow_missingBoolean 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

Returns:

  • (Boolean)


1649
1650
1651
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1649

def allow_missing
  @allow_missing
end

#cascading_rulesArray<Google::Apis::MigrationcenterV1alpha1::CascadingRule>

Optional. Optional cascading rules for deleting related assets. Corresponds to the JSON property cascadingRules



1655
1656
1657
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1655

def cascading_rules
  @cascading_rules
end

#namesArray<String>

Required. The IDs of the assets to delete. A maximum of 1000 assets can be deleted in a batch. Format: projects/project/locations/location/assets/ name. Corresponds to the JSON property names

Returns:

  • (Array<String>)


1662
1663
1664
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1662

def names
  @names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1669
1670
1671
1672
1673
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1669

def update!(**args)
  @allow_missing = args[:allow_missing] if args.key?(:allow_missing)
  @cascading_rules = args[:cascading_rules] if args.key?(:cascading_rules)
  @names = args[:names] if args.key?(:names)
end