Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappdistribution_v1/classes.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb
Overview
The request message for BatchDeleteReleases.
Instance Attribute Summary collapse
-
#names ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest
constructor
A new instance of GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest
Returns a new instance of GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest.
812 813 814 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 812 def initialize(**args) update!(**args) end |
Instance Attribute Details
#names ⇒ Array<String>
Required. The names of the release resources to delete. Format: projects/
project_number/apps/app/releases/release`A maximum of 100 releases can
be deleted per request.
Corresponds to the JSON propertynames`
810 811 812 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 810 def names @names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
817 818 819 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 817 def update!(**args) @names = args[:names] if args.key?(:names) end |