Class: Google::Apis::CloudbuildV1alpha1::BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudbuildV1alpha1::BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
 
- 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 BatchCreateBitbucketServerConnectedRepositories operation.
Instance Attribute Summary collapse
- 
  
    
      #complete_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Time the operation was completed. 
- 
  
    
      #config  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the BitbucketServerConfigthat added connected repositories.
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Time the operation was created. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
Returns a new instance of BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata.
| 247 248 249 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 247 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#complete_time ⇒ String
Time the operation was completed.
Corresponds to the JSON property completeTime
| 233 234 235 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 233 def complete_time @complete_time end | 
#config ⇒ String
The name of the BitbucketServerConfig that added connected repositories.
Format: projects/project/locations/location/bitbucketServerConfigs/
config`
Corresponds to the JSON propertyconfig`
| 240 241 242 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 240 def config @config end | 
#create_time ⇒ String
Time the operation was created.
Corresponds to the JSON property createTime
| 245 246 247 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 245 def create_time @create_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 252 253 254 255 256 | # File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 252 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 |