Class: Google::Apis::CloudbuildV1::BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1/classes.rb,
lib/google/apis/cloudbuild_v1/representations.rb,
lib/google/apis/cloudbuild_v1/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
BitbucketServerConfig
that 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.
297 298 299 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 297 def initialize(**args) update!(**args) end |
Instance Attribute Details
#complete_time ⇒ String
Time the operation was completed.
Corresponds to the JSON property completeTime
283 284 285 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 283 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 property
config`
290 291 292 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 290 def config @config end |
#create_time ⇒ String
Time the operation was created.
Corresponds to the JSON property createTime
295 296 297 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 295 def create_time @create_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
302 303 304 305 306 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 302 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 |