Class: Google::Apis::TestingV1::Shard

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

Overview

Output only. Details about the shard.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Shard

Returns a new instance of Shard.



1974
1975
1976
# File 'lib/google/apis/testing_v1/classes.rb', line 1974

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

Instance Attribute Details

#num_shardsFixnum

Output only. The total number of shards. Corresponds to the JSON property numShards

Returns:

  • (Fixnum)


1962
1963
1964
# File 'lib/google/apis/testing_v1/classes.rb', line 1962

def num_shards
  @num_shards
end

#shard_indexFixnum

Output only. The index of the shard among all the shards. Corresponds to the JSON property shardIndex

Returns:

  • (Fixnum)


1967
1968
1969
# File 'lib/google/apis/testing_v1/classes.rb', line 1967

def shard_index
  @shard_index
end

#test_targets_for_shardGoogle::Apis::TestingV1::TestTargetsForShard

Test targets for a shard. Corresponds to the JSON property testTargetsForShard



1972
1973
1974
# File 'lib/google/apis/testing_v1/classes.rb', line 1972

def test_targets_for_shard
  @test_targets_for_shard
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1979
1980
1981
1982
1983
# File 'lib/google/apis/testing_v1/classes.rb', line 1979

def update!(**args)
  @num_shards = args[:num_shards] if args.key?(:num_shards)
  @shard_index = args[:shard_index] if args.key?(:shard_index)
  @test_targets_for_shard = args[:test_targets_for_shard] if args.key?(:test_targets_for_shard)
end