Class: Google::Apis::ArtifactregistryV1beta2::GoogleDevtoolsArtifactregistryV1beta2File
- Inherits:
-
Object
- Object
- Google::Apis::ArtifactregistryV1beta2::GoogleDevtoolsArtifactregistryV1beta2File
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/artifactregistry_v1beta2/classes.rb,
lib/google/apis/artifactregistry_v1beta2/representations.rb,
lib/google/apis/artifactregistry_v1beta2/representations.rb
Overview
Files store content that is potentially associated with Packages or Versions.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#hashes ⇒ Array<Google::Apis::ArtifactregistryV1beta2::HashProp>
The hashes of the file content.
-
#name ⇒ String
The name of the file, for example:
projects/p1/locations/us-central1/ repositories/repo1/files/a%2Fb%2Fc.txt
. -
#owner ⇒ String
The name of the Package or Version that owns this file, if any.
-
#size_bytes ⇒ Fixnum
The size of the File in bytes.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsArtifactregistryV1beta2File
constructor
A new instance of GoogleDevtoolsArtifactregistryV1beta2File.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsArtifactregistryV1beta2File
Returns a new instance of GoogleDevtoolsArtifactregistryV1beta2File.
297 298 299 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 297 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time when the File was created.
Corresponds to the JSON property createTime
268 269 270 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 268 def create_time @create_time end |
#hashes ⇒ Array<Google::Apis::ArtifactregistryV1beta2::HashProp>
The hashes of the file content.
Corresponds to the JSON property hashes
273 274 275 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 273 def hashes @hashes end |
#name ⇒ String
The name of the file, for example: projects/p1/locations/us-central1/
repositories/repo1/files/a%2Fb%2Fc.txt
. If the file ID part contains slashes,
they are escaped.
Corresponds to the JSON property name
280 281 282 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 280 def name @name end |
#owner ⇒ String
The name of the Package or Version that owns this file, if any.
Corresponds to the JSON property owner
285 286 287 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 285 def owner @owner end |
#size_bytes ⇒ Fixnum
The size of the File in bytes.
Corresponds to the JSON property sizeBytes
290 291 292 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 290 def size_bytes @size_bytes end |
#update_time ⇒ String
Output only. The time when the File was last updated.
Corresponds to the JSON property updateTime
295 296 297 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 295 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
302 303 304 305 306 307 308 309 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 302 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @hashes = args[:hashes] if args.key?(:hashes) @name = args[:name] if args.key?(:name) @owner = args[:owner] if args.key?(:owner) @size_bytes = args[:size_bytes] if args.key?(:size_bytes) @update_time = args[:update_time] if args.key?(:update_time) end |