Class: Google::Apis::ArtifactregistryV1::Repository
- Inherits:
-
Object
- Object
- Google::Apis::ArtifactregistryV1::Repository
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/artifactregistry_v1/classes.rb,
lib/google/apis/artifactregistry_v1/representations.rb,
lib/google/apis/artifactregistry_v1/representations.rb
Overview
A Repository for storing artifacts with a specific format.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time when the repository was created.
-
#description ⇒ String
The user-provided description of the repository.
-
#format ⇒ String
The format of packages that are stored in the repository.
-
#kms_key_name ⇒ String
The Cloud KMS resource name of the customer managed encryption key that's used to encrypt the contents of the Repository.
-
#labels ⇒ Hash<String,String>
Labels with user-defined metadata.
-
#maven_config ⇒ Google::Apis::ArtifactregistryV1::MavenRepositoryConfig
MavenRepositoryConfig is maven related repository details.
-
#name ⇒ String
The name of the repository, for example: "projects/p1/locations/us-central1/ repositories/repo1".
-
#size_bytes ⇒ Fixnum
Output only.
-
#update_time ⇒ String
The time when the repository was last updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Repository
constructor
A new instance of Repository.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Repository
Returns a new instance of Repository.
1157 1158 1159 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1157 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time when the repository was created.
Corresponds to the JSON property createTime
1105 1106 1107 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1105 def create_time @create_time end |
#description ⇒ String
The user-provided description of the repository.
Corresponds to the JSON property description
1110 1111 1112 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1110 def description @description end |
#format ⇒ String
The format of packages that are stored in the repository.
Corresponds to the JSON property format
1115 1116 1117 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1115 def format @format end |
#kms_key_name ⇒ String
The Cloud KMS resource name of the customer managed encryption key that's used
to encrypt the contents of the Repository. Has the form: projects/my-project/
locations/my-region/keyRings/my-kr/cryptoKeys/my-key
. This value may not be
changed after the Repository has been created.
Corresponds to the JSON property kmsKeyName
1123 1124 1125 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1123 def kms_key_name @kms_key_name end |
#labels ⇒ Hash<String,String>
Labels with user-defined metadata. This field may contain up to 64 entries.
Label keys and values may be no longer than 63 characters. Label keys must
begin with a lowercase letter and may only contain lowercase letters, numeric
characters, underscores, and dashes.
Corresponds to the JSON property labels
1131 1132 1133 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1131 def labels @labels end |
#maven_config ⇒ Google::Apis::ArtifactregistryV1::MavenRepositoryConfig
MavenRepositoryConfig is maven related repository details. Provides additional
configuration details for repositories of the maven format type.
Corresponds to the JSON property mavenConfig
1137 1138 1139 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1137 def maven_config @maven_config end |
#name ⇒ String
The name of the repository, for example: "projects/p1/locations/us-central1/
repositories/repo1".
Corresponds to the JSON property name
1143 1144 1145 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1143 def name @name end |
#size_bytes ⇒ Fixnum
Output only. The size, in bytes, of all artifact storage in this repository.
Repositories that are generally available or in public preview use this to
calculate storage costs.
Corresponds to the JSON property sizeBytes
1150 1151 1152 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1150 def size_bytes @size_bytes end |
#update_time ⇒ String
The time when the repository was last updated.
Corresponds to the JSON property updateTime
1155 1156 1157 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1155 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 |
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1162 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @format = args[:format] if args.key?(:format) @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) @labels = args[:labels] if args.key?(:labels) @maven_config = args[:maven_config] if args.key?(:maven_config) @name = args[:name] if args.key?(:name) @size_bytes = args[:size_bytes] if args.key?(:size_bytes) @update_time = args[:update_time] if args.key?(:update_time) end |