Class: Google::Apis::ComputeAlpha::BulkInsertOperationStatus

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
more...

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BulkInsertOperationStatus

Returns a new instance of BulkInsertOperationStatus.

[View source]

6299
6300
6301
# File 'lib/google/apis/compute_alpha/classes.rb', line 6299

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#created_vm_countFixnum

[Output Only] Count of VMs successfully created so far. Corresponds to the JSON property createdVmCount

Returns:

  • (Fixnum)

6276
6277
6278
# File 'lib/google/apis/compute_alpha/classes.rb', line 6276

def created_vm_count
  @created_vm_count
end

#deleted_vm_countFixnum

[Output Only] Count of VMs that got deleted during rollback. Corresponds to the JSON property deletedVmCount

Returns:

  • (Fixnum)

6281
6282
6283
# File 'lib/google/apis/compute_alpha/classes.rb', line 6281

def deleted_vm_count
  @deleted_vm_count
end

#failed_to_create_vm_countFixnum

[Output Only] Count of VMs that started creating but encountered an error. Corresponds to the JSON property failedToCreateVmCount

Returns:

  • (Fixnum)

6286
6287
6288
# File 'lib/google/apis/compute_alpha/classes.rb', line 6286

def failed_to_create_vm_count
  @failed_to_create_vm_count
end

#statusString

[Output Only] Creation status of BulkInsert operation - information if the flow is rolling forward or rolling back. Corresponds to the JSON property status

Returns:

  • (String)

6292
6293
6294
# File 'lib/google/apis/compute_alpha/classes.rb', line 6292

def status
  @status
end

#target_vm_countFixnum

[Output Only] Count of VMs originally planned to be created. Corresponds to the JSON property targetVmCount

Returns:

  • (Fixnum)

6297
6298
6299
# File 'lib/google/apis/compute_alpha/classes.rb', line 6297

def target_vm_count
  @target_vm_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

6304
6305
6306
6307
6308
6309
6310
# File 'lib/google/apis/compute_alpha/classes.rb', line 6304

def update!(**args)
  @created_vm_count = args[:created_vm_count] if args.key?(:created_vm_count)
  @deleted_vm_count = args[:deleted_vm_count] if args.key?(:deleted_vm_count)
  @failed_to_create_vm_count = args[:failed_to_create_vm_count] if args.key?(:failed_to_create_vm_count)
  @status = args[:status] if args.key?(:status)
  @target_vm_count = args[:target_vm_count] if args.key?(:target_vm_count)
end