Class: Google::Apis::CloudbuildV1alpha1::BatchCreateGitLabConnectedRepositoriesResponseMetadata
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudbuildV1alpha1::BatchCreateGitLabConnectedRepositoriesResponseMetadata
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1alpha1/classes.rb,
 lib/google/apis/cloudbuild_v1alpha1/representations.rb,
 lib/google/apis/cloudbuild_v1alpha1/representations.rb
Overview
Metadata for BatchCreateGitLabConnectedRepositories operation.
Instance Attribute Summary collapse
- 
  
    
      #complete_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Time the operation was completed. 
- 
  
    
      #config  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the GitLabConfigthat added connected repositories.
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Time the operation was created. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BatchCreateGitLabConnectedRepositoriesResponseMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BatchCreateGitLabConnectedRepositoriesResponseMetadata. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ BatchCreateGitLabConnectedRepositoriesResponseMetadata
Returns a new instance of BatchCreateGitLabConnectedRepositoriesResponseMetadata.
| 298 299 300 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 298 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#complete_time ⇒ String
Time the operation was completed.
Corresponds to the JSON property completeTime
| 285 286 287 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 285 def complete_time @complete_time end | 
#config ⇒ String
The name of the GitLabConfig that added connected repositories. Format: 
projects/project/locations/location/gitLabConfigs/config`
Corresponds to the JSON propertyconfig`
| 291 292 293 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 291 def config @config end | 
#create_time ⇒ String
Time the operation was created.
Corresponds to the JSON property createTime
| 296 297 298 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 296 def create_time @create_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 303 304 305 306 307 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 303 def update!(**args) @complete_time = args[:complete_time] if args.key?(:complete_time) @config = args[:config] if args.key?(:config) @create_time = args[:create_time] if args.key?(:create_time) end |