google-apis-remotebuildexecution_v2 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8aa1e54977f7492c87573fc2cdaf0bb390bc3ce9652775580c037a8df905145c
4
- data.tar.gz: 7bd984c12857598e955b7d855cc6f8f357f6e8f663ec9f63fded24bd528fb74c
3
+ metadata.gz: 3c4b7ea01a68cee6139400385b0bb836beb25850c614491865205ccb938d3a18
4
+ data.tar.gz: 5442f12ad4b53c57d7a212f0d2f75f33b918c53be5609e621a59e8c558e2108c
5
5
  SHA512:
6
- metadata.gz: d94f3296dd7761c1ba3104e86974a536a5ea2004cfe17bc6088b813831a9340675f93748d880fdde7a24da060846e1f5c2f6f72f670d5308bf5e088960c21aa9
7
- data.tar.gz: e3b1d5c035f89a7ed0b44ef4f2d469d958021ef897efebbe8f1d234fa09b5f6898f65f04c71238552e16c85910fc831da68ee077817a6983bb15d5e4a8d39a70
6
+ metadata.gz: c40f990f6ff3571f9b94a943f7c7c9d38bc9b7ed26667d70ea867bc631c9af3dcebe196af5fe62d1f4eeaa63b7da4dba714a8ab3c5dce35f2d21f7d05c1ef5f9
7
+ data.tar.gz: d3f9a9c1bba4400f45f4dd40b2a637307bda7d2ea008e8635466aed1b1cb8899000feb91cac51234cc1af98c57769cccf13e96bb1a08d44296bf0fc8ef7efe98
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-remotebuildexecution_v2
2
2
 
3
+ ### v0.6.0 (2021-03-18)
4
+
5
+ * Regenerated from discovery document revision 20210316
6
+ * Regenerated using generator version 0.2.0
7
+
3
8
  ### v0.5.0 (2021-03-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20210302
@@ -636,6 +636,14 @@ module Google
636
636
  # @return [Fixnum]
637
637
  attr_accessor :max_batch_total_size_bytes
638
638
 
639
+ # Compressors supported by the "compressed-blobs" bytestream resources. Servers
640
+ # MUST support identity/no-compression, even if it is not listed here. Note that
641
+ # this does not imply which if any compressors are supported by the server at
642
+ # the gRPC level.
643
+ # Corresponds to the JSON property `supportedCompressor`
644
+ # @return [Array<String>]
645
+ attr_accessor :supported_compressor
646
+
639
647
  # Whether absolute symlink targets are supported.
640
648
  # Corresponds to the JSON property `symlinkAbsolutePathStrategy`
641
649
  # @return [String]
@@ -651,6 +659,7 @@ module Google
651
659
  @cache_priority_capabilities = args[:cache_priority_capabilities] if args.key?(:cache_priority_capabilities)
652
660
  @digest_function = args[:digest_function] if args.key?(:digest_function)
653
661
  @max_batch_total_size_bytes = args[:max_batch_total_size_bytes] if args.key?(:max_batch_total_size_bytes)
662
+ @supported_compressor = args[:supported_compressor] if args.key?(:supported_compressor)
654
663
  @symlink_absolute_path_strategy = args[:symlink_absolute_path_strategy] if args.key?(:symlink_absolute_path_strategy)
655
664
  end
656
665
  end
@@ -1852,12 +1861,33 @@ module Google
1852
1861
  # @return [String]
1853
1862
  attr_accessor :action_id
1854
1863
 
1864
+ # A brief description of the kind of action, for example, CppCompile or GoLink.
1865
+ # There is no standard agreed set of values for this, and they are expected to
1866
+ # vary between different client tools.
1867
+ # Corresponds to the JSON property `actionMnemonic`
1868
+ # @return [String]
1869
+ attr_accessor :action_mnemonic
1870
+
1871
+ # An identifier for the configuration in which the target was built, e.g. for
1872
+ # differentiating building host tools or different target platforms. There is no
1873
+ # expectation that this value will have any particular structure, or equality
1874
+ # across invocations, though some client tools may offer these guarantees.
1875
+ # Corresponds to the JSON property `configurationId`
1876
+ # @return [String]
1877
+ attr_accessor :configuration_id
1878
+
1855
1879
  # An identifier to tie multiple tool invocations together. For example, runs of
1856
1880
  # foo_test, bar_test and baz_test on a post-submit of a given patch.
1857
1881
  # Corresponds to the JSON property `correlatedInvocationsId`
1858
1882
  # @return [String]
1859
1883
  attr_accessor :correlated_invocations_id
1860
1884
 
1885
+ # An identifier for the target which produced this action. No guarantees are
1886
+ # made around how many actions may relate to a single target.
1887
+ # Corresponds to the JSON property `targetId`
1888
+ # @return [String]
1889
+ attr_accessor :target_id
1890
+
1861
1891
  # Details for the tool used to call the API.
1862
1892
  # Corresponds to the JSON property `toolDetails`
1863
1893
  # @return [Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ToolDetails]
@@ -1876,7 +1906,10 @@ module Google
1876
1906
  # Update properties of this object
1877
1907
  def update!(**args)
1878
1908
  @action_id = args[:action_id] if args.key?(:action_id)
1909
+ @action_mnemonic = args[:action_mnemonic] if args.key?(:action_mnemonic)
1910
+ @configuration_id = args[:configuration_id] if args.key?(:configuration_id)
1879
1911
  @correlated_invocations_id = args[:correlated_invocations_id] if args.key?(:correlated_invocations_id)
1912
+ @target_id = args[:target_id] if args.key?(:target_id)
1880
1913
  @tool_details = args[:tool_details] if args.key?(:tool_details)
1881
1914
  @tool_invocation_id = args[:tool_invocation_id] if args.key?(:tool_invocation_id)
1882
1915
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RemotebuildexecutionV2
18
18
  # Version of the google-apis-remotebuildexecution_v2 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210302"
25
+ REVISION = "20210316"
26
26
  end
27
27
  end
28
28
  end
@@ -644,6 +644,7 @@ module Google
644
644
 
645
645
  collection :digest_function, as: 'digestFunction'
646
646
  property :max_batch_total_size_bytes, :numeric_string => true, as: 'maxBatchTotalSizeBytes'
647
+ collection :supported_compressor, as: 'supportedCompressor'
647
648
  property :symlink_absolute_path_strategy, as: 'symlinkAbsolutePathStrategy'
648
649
  end
649
650
  end
@@ -908,7 +909,10 @@ module Google
908
909
  # @private
909
910
  class Representation < Google::Apis::Core::JsonRepresentation
910
911
  property :action_id, as: 'actionId'
912
+ property :action_mnemonic, as: 'actionMnemonic'
913
+ property :configuration_id, as: 'configurationId'
911
914
  property :correlated_invocations_id, as: 'correlatedInvocationsId'
915
+ property :target_id, as: 'targetId'
912
916
  property :tool_details, as: 'toolDetails', class: Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ToolDetails, decorator: Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ToolDetails::Representation
913
917
 
914
918
  property :tool_invocation_id, as: 'toolInvocationId'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-remotebuildexecution_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-08 00:00:00.000000000 Z
11
+ date: 2021-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-remotebuildexecution_v2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v2/v0.5.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v2/v0.6.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-remotebuildexecution_v2
57
57
  post_install_message:
58
58
  rdoc_options: []