Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/devtools/artifactregistry/v1/repository.rb

Overview

Remote repository configuration.

Defined Under Namespace

Classes: AptRepository, DockerRepository, MavenRepository, NpmRepository, PythonRepository, UpstreamCredentials, YumRepository

Instance Attribute Summary collapse

Instance Attribute Details

#apt_repository::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository

Returns Specific settings for an Apt remote repository.

Returns:



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end

#description::String

Returns The description of the remote source.

Returns:

  • (::String)

    The description of the remote source.



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end

#docker_repository::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository

Returns Specific settings for a Docker remote repository.

Returns:



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end

#maven_repository::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository

Returns Specific settings for a Maven remote repository.

Returns:



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end

#npm_repository::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository

Returns Specific settings for an Npm remote repository.

Returns:



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end

#python_repository::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository

Returns Specific settings for a Python remote repository.

Returns:



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end

#upstream_credentials::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials

Returns Optional. The credentials used to access the remote repository.

Returns:



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end

#yum_repository::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository

Returns Specific settings for a Yum remote repository.

Returns:



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 160

class RemoteRepositoryConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The credentials to access the remote repository.
  # @!attribute [rw] username_password_credentials
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials]
  #     Use username and password to access the remote repository.
  class UpstreamCredentials
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Username and password credentials.
    # @!attribute [rw] username
    #   @return [::String]
    #     The username to access the remote repository.
    # @!attribute [rw] password_secret_version
    #   @return [::String]
    #     The Secret Manager key version that holds the password to access the
    #     remote repository. Must be in the format of
    #     `projects/{project}/secrets/{secret}/versions/{version}`.
    class UsernamePasswordCredentials
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Configuration for a Docker remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository]
  #     One of the publicly available Docker repositories supported by Artifact
  #     Registry.
  class DockerRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Docker repositories like Docker
    # Hub.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Docker Hub.
      DOCKER_HUB = 1
    end
  end

  # Configuration for a Maven remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository::PublicRepository]
  #     One of the publicly available Maven repositories supported by Artifact
  #     Registry.
  class MavenRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Maven repositories like Maven
    # Central.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # Maven Central.
      MAVEN_CENTRAL = 1
    end
  end

  # Configuration for a Npm remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository]
  #     One of the publicly available Npm repositories supported by Artifact
  #     Registry.
  class NpmRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available NPM repositories like npmjs.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # npmjs.
      NPMJS = 1
    end
  end

  # Configuration for a Python remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository]
  #     One of the publicly available Python repositories supported by Artifact
  #     Registry.
  class PythonRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Predefined list of publicly available Python repositories like PyPI.org.
    module PublicRepository
      # Unspecified repository.
      PUBLIC_REPOSITORY_UNSPECIFIED = 0

      # PyPI.
      PYPI = 1
    end
  end

  # Configuration for an Apt remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository]
  #     One of the publicly available Apt repositories supported by Artifact
  #     Registry.
  class AptRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Apt repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Apt.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Apt.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # Debian.
        DEBIAN = 1

        # Ubuntu LTS/Pro.
        UBUNTU = 2
      end
    end
  end

  # Configuration for a Yum remote repository.
  # @!attribute [rw] public_repository
  #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository]
  #     One of the publicly available Yum repositories supported by Artifact
  #     Registry.
  class YumRepository
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Publicly available Yum repositories constructed from a common repository
    # base and a custom repository path.
    # @!attribute [rw] repository_base
    #   @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase]
    #     A common public repository base for Yum.
    # @!attribute [rw] repository_path
    #   @return [::String]
    #     A custom field to define a path to a specific repository from the base.
    class PublicRepository
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # Predefined list of publicly available repository bases for Yum.
      module RepositoryBase
        # Unspecified repository base.
        REPOSITORY_BASE_UNSPECIFIED = 0

        # CentOS.
        CENTOS = 1

        # CentOS Debug.
        CENTOS_DEBUG = 2

        # CentOS Vault.
        CENTOS_VAULT = 3

        # CentOS Stream.
        CENTOS_STREAM = 4

        # Rocky.
        ROCKY = 5

        # Fedora Extra Packages for Enterprise Linux (EPEL).
        EPEL = 6
      end
    end
  end
end