Class: Google::Apis::OsconfigV1beta::SoftwareRecipeArtifactGcs
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1beta::SoftwareRecipeArtifactGcs
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/osconfig_v1beta/classes.rb,
generated/google/apis/osconfig_v1beta/representations.rb,
generated/google/apis/osconfig_v1beta/representations.rb
Overview
Specifies an artifact available as a Google Cloud Storage object.
Instance Attribute Summary collapse
-
#bucket ⇒ String
Bucket of the Google Cloud Storage object.
-
#generation ⇒ Fixnum
Must be provided if allow_insecure is false.
-
#object ⇒ String
Name of the Google Cloud Storage object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SoftwareRecipeArtifactGcs
constructor
A new instance of SoftwareRecipeArtifactGcs.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SoftwareRecipeArtifactGcs
Returns a new instance of SoftwareRecipeArtifactGcs.
2126 2127 2128 |
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2126 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket ⇒ String
Bucket of the Google Cloud Storage object. Given an example URL: https://
storage.googleapis.com/my-bucket/foo/bar#1234567
this value would be my-
bucket
.
Corresponds to the JSON property bucket
2109 2110 2111 |
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2109 def bucket @bucket end |
#generation ⇒ Fixnum
Must be provided if allow_insecure is false. Generation number of the Google
Cloud Storage object. https://storage.googleapis.com/my-bucket/foo/bar#
1234567
this value would be 1234567
.
Corresponds to the JSON property generation
2116 2117 2118 |
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2116 def generation @generation end |
#object ⇒ String
Name of the Google Cloud Storage object. As specified here Given an example URL: https://
storage.googleapis.com/my-bucket/foo/bar#1234567
this value would be foo/bar
.
Corresponds to the JSON property object
2124 2125 2126 |
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2124 def object @object end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2131 2132 2133 2134 2135 |
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2131 def update!(**args) @bucket = args[:bucket] if args.key?(:bucket) @generation = args[:generation] if args.key?(:generation) @object = args[:object] if args.key?(:object) end |