Class: Google::Apis::FirebasecrashlyticsV1alpha::BatchUpdateIssuesRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebasecrashlyticsV1alpha::BatchUpdateIssuesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasecrashlytics_v1alpha/classes.rb,
lib/google/apis/firebasecrashlytics_v1alpha/representations.rb,
lib/google/apis/firebasecrashlytics_v1alpha/representations.rb
Overview
Request message for the BatchUpdateIssues method.
Instance Attribute Summary collapse
-
#requests ⇒ Array<Google::Apis::FirebasecrashlyticsV1alpha::UpdateIssueRequest>
Required.
-
#update_mask ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BatchUpdateIssuesRequest
constructor
A new instance of BatchUpdateIssuesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BatchUpdateIssuesRequest
Returns a new instance of BatchUpdateIssuesRequest.
61 62 63 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 61 def initialize(**args) update!(**args) end |
Instance Attribute Details
#requests ⇒ Array<Google::Apis::FirebasecrashlyticsV1alpha::UpdateIssueRequest>
Required. The request message specifying the resources to update. A maximum of
100 issues can be modified in a batch.
Corresponds to the JSON property requests
52 53 54 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 52 def requests @requests end |
#update_mask ⇒ String
Optional. The list of Issue fields to update. If this is set, the update_mask
field in the UpdateIssueRequest messages must either be empty or match this
field.
Corresponds to the JSON property updateMask
59 60 61 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 59 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
66 67 68 69 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 66 def update!(**args) @requests = args[:requests] if args.key?(:requests) @update_mask = args[:update_mask] if args.key?(:update_mask) end |