Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1DistributeReleaseRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1DistributeReleaseRequest
- 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 DistributeRelease.
Instance Attribute Summary collapse
-
#group_aliases ⇒ Array<String>
Optional.
-
#tester_emails ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1DistributeReleaseRequest
constructor
A new instance of GoogleFirebaseAppdistroV1DistributeReleaseRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1DistributeReleaseRequest
Returns a new instance of GoogleFirebaseAppdistroV1DistributeReleaseRequest.
927 928 929 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 927 def initialize(**args) update!(**args) end |
Instance Attribute Details
#group_aliases ⇒ Array<String>
Optional. A list of group aliases (IDs) to be given access to this release. A
combined maximum of 999 testerEmails and groupAliases can be specified in
a single request.
Corresponds to the JSON property groupAliases
918 919 920 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 918 def group_aliases @group_aliases end |
#tester_emails ⇒ Array<String>
Optional. A list of tester email addresses to be given access to this release.
A combined maximum of 999 testerEmails and groupAliases can be specified
in a single request.
Corresponds to the JSON property testerEmails
925 926 927 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 925 def tester_emails @tester_emails end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
932 933 934 935 |
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 932 def update!(**args) @group_aliases = args[:group_aliases] if args.key?(:group_aliases) @tester_emails = args[:tester_emails] if args.key?(:tester_emails) end |