Class: Aws::CodeArtifact::Types::UpdateRepositoryRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeArtifact::Types::UpdateRepositoryRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codeartifact/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An updated repository description.
 - 
  
    
      #domain  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the domain associated with the repository to update.
 - 
  
    
      #domain_owner  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The 12-digit account number of the Amazon Web Services account that owns the domain.
 - 
  
    
      #repository  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository to update.
 - 
  
    
      #upstreams  ⇒ Array<Types::UpstreamRepository> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of upstream repositories to associate with the repository.
 
Instance Attribute Details
#description ⇒ String
An updated repository description.
      3402 3403 3404 3405 3406 3407 3408 3409 3410  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 3402 class UpdateRepositoryRequest < Struct.new( :domain, :domain_owner, :repository, :description, :upstreams) SENSITIVE = [] include Aws::Structure end  | 
  
#domain ⇒ String
The name of the domain associated with the repository to update.
      3402 3403 3404 3405 3406 3407 3408 3409 3410  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 3402 class UpdateRepositoryRequest < Struct.new( :domain, :domain_owner, :repository, :description, :upstreams) SENSITIVE = [] include Aws::Structure end  | 
  
#domain_owner ⇒ String
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
      3402 3403 3404 3405 3406 3407 3408 3409 3410  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 3402 class UpdateRepositoryRequest < Struct.new( :domain, :domain_owner, :repository, :description, :upstreams) SENSITIVE = [] include Aws::Structure end  | 
  
#repository ⇒ String
The name of the repository to update.
      3402 3403 3404 3405 3406 3407 3408 3409 3410  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 3402 class UpdateRepositoryRequest < Struct.new( :domain, :domain_owner, :repository, :description, :upstreams) SENSITIVE = [] include Aws::Structure end  | 
  
#upstreams ⇒ Array<Types::UpstreamRepository>
A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when CodeArtifact looks for a requested package version. For more information, see [Working with upstream repositories].
[1]: docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html
      3402 3403 3404 3405 3406 3407 3408 3409 3410  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 3402 class UpdateRepositoryRequest < Struct.new( :domain, :domain_owner, :repository, :description, :upstreams) SENSITIVE = [] include Aws::Structure end  |