Class: Google::Cloud::Run::V2::SourceCode
- Inherits:
-
Object
- Object
- Google::Cloud::Run::V2::SourceCode
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/run/v2/k8s.min.rb
Overview
Source type for the container.
Defined Under Namespace
Classes: CloudStorageSource
Instance Attribute Summary collapse
-
#cloud_storage_source ⇒ ::Google::Cloud::Run::V2::SourceCode::CloudStorageSource
The source is a Cloud Storage bucket.
Instance Attribute Details
#cloud_storage_source ⇒ ::Google::Cloud::Run::V2::SourceCode::CloudStorageSource
Returns The source is a Cloud Storage bucket.
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 |
# File 'proto_docs/google/cloud/run/v2/k8s.min.rb', line 525 class SourceCode include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Cloud Storage source. # @!attribute [rw] bucket # @return [::String] # Required. The Cloud Storage bucket name. # @!attribute [rw] object # @return [::String] # Required. The Cloud Storage object name. # @!attribute [rw] generation # @return [::Integer] # Optional. The Cloud Storage object generation. class CloudStorageSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |