Class: Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository
 
 
- 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
Publicly available Yum repositories constructed from a common repository base and a custom repository path.
Instance Attribute Summary collapse
- 
  
    
      #repository_base  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A common public repository base for Yum.
 - 
  
    
      #repository_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A custom field to define a path to a specific repository from the base.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository
Returns a new instance of GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository.
      1009 1010 1011  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1009 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#repository_base ⇒ String
A common public repository base for Yum.
Corresponds to the JSON property repositoryBase
      1002 1003 1004  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1002 def repository_base @repository_base end  | 
  
#repository_path ⇒ String
A custom field to define a path to a specific repository from the base.
Corresponds to the JSON property repositoryPath
      1007 1008 1009  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1007 def repository_path @repository_path end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1014 1015 1016 1017  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1014 def update!(**args) @repository_base = args[:repository_base] if args.key?(:repository_base) @repository_path = args[:repository_path] if args.key?(:repository_path) end  |