Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest

Returns a new instance of GoogleFirebaseAppdistroV1BatchDeleteReleasesRequest.



780
781
782
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 780

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

Instance Attribute Details

#namesArray<String>

Required. The names of the release resources to delete. Format: projects/ project_number/apps/app_id/releases/release_id`A maximum of 100 releases can be deleted per request. Corresponds to the JSON propertynames`

Returns:

  • (Array<String>)


778
779
780
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 778

def names
  @names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



785
786
787
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 785

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