Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaAnalyzeUploadRequest
- Inherits:
-
Object
- Object
- Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaAnalyzeUploadRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/checks_v1alpha/classes.rb,
lib/google/apis/checks_v1alpha/representations.rb,
lib/google/apis/checks_v1alpha/representations.rb
Overview
The request message for ReportService.AnalyzeUpload.
Instance Attribute Summary collapse
-
#app_binary_file_type ⇒ String
Optional.
-
#code_reference_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChecksReportV1alphaAnalyzeUploadRequest
constructor
A new instance of GoogleChecksReportV1alphaAnalyzeUploadRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChecksReportV1alphaAnalyzeUploadRequest
Returns a new instance of GoogleChecksReportV1alphaAnalyzeUploadRequest.
658 659 660 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 658 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_binary_file_type ⇒ String
Optional. The type of the uploaded app binary. If not provided, the server
assumes APK file for Android and IPA file for iOS.
Corresponds to the JSON property appBinaryFileType
651 652 653 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 651 def app_binary_file_type @app_binary_file_type end |
#code_reference_id ⇒ String
Optional. Git commit hash or changelist number associated with the upload.
Corresponds to the JSON property codeReferenceId
656 657 658 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 656 def code_reference_id @code_reference_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
663 664 665 666 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 663 def update!(**args) @app_binary_file_type = args[:app_binary_file_type] if args.key?(:app_binary_file_type) @code_reference_id = args[:code_reference_id] if args.key?(:code_reference_id) end |