google-apis-serviceconsumermanagement_v1 0.49.0 → 0.50.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 23fb133393c687652b1c25749271582761c03d1477348a96539318c2a3a80ccd
4
- data.tar.gz: c9f581438a4142bdc22b4aa3fadc57b9a6dc3d681da70c8908416990e608aaab
3
+ metadata.gz: 5b0cc40930e38298ffbeaf5c47ab1d3acdf0179251b147a464e93a4bcd99fbfb
4
+ data.tar.gz: 86de31ca497fddfc0ce303124d47e5ba65fa10b7c4697b13415dd22e839e379b
5
5
  SHA512:
6
- metadata.gz: de4ad4bc289cf6143d1cb4913b792111566228d49acee1a0b7f92a35191072c57ad6b7073b9b7084fc83d33a9daf2a957df905479261ce3942d69e727dcd9217
7
- data.tar.gz: eb3a7c628bba29db2c4f16014e152fe9541f07f1ecf0b412d94f94f6f0066987710418791d14fb3a3fabff8856a681a9e7a2269de8bca708034659319ac45966
6
+ metadata.gz: 821ef08f976cd9a84332a0a63250ba5da55cddb2007b3cf8c9cbbf866c5177e2b41e6fe0bdcab7592b821d6fb8f7d369cab734ae2397671b94101d72ca84443b
7
+ data.tar.gz: 0626c076a10488f6c55d7d89e613a36678b4b6db8e7a73ba952e553717a8a73b423591ed0bcc77fb068093e1f63d457062aa2fb197b07b2db03d563bb1159103
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1
2
2
 
3
+ ### v0.50.0 (2024-09-15)
4
+
5
+ * Regenerated from discovery document revision 20240905
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.49.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240712
@@ -1318,6 +1318,30 @@ module Google
1318
1318
  end
1319
1319
  end
1320
1320
 
1321
+ # Experimental features to be included during client library generation. These
1322
+ # fields will be deprecated once the feature graduates and is enabled by default.
1323
+ class ExperimentalFeatures
1324
+ include Google::Apis::Core::Hashable
1325
+
1326
+ # Enables generation of asynchronous REST clients if `rest` transport is enabled.
1327
+ # By default, asynchronous REST clients will not be generated. This feature
1328
+ # will be enabled by default 1 month after launching the feature in preview
1329
+ # packages.
1330
+ # Corresponds to the JSON property `restAsyncIoEnabled`
1331
+ # @return [Boolean]
1332
+ attr_accessor :rest_async_io_enabled
1333
+ alias_method :rest_async_io_enabled?, :rest_async_io_enabled
1334
+
1335
+ def initialize(**args)
1336
+ update!(**args)
1337
+ end
1338
+
1339
+ # Update properties of this object
1340
+ def update!(**args)
1341
+ @rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
1342
+ end
1343
+ end
1344
+
1321
1345
  # A single field of a message type.
1322
1346
  class Field
1323
1347
  include Google::Apis::Core::Hashable
@@ -2314,6 +2338,11 @@ module Google
2314
2338
  # @return [String]
2315
2339
  attr_accessor :sample_period
2316
2340
 
2341
+ # The scope of the timeseries data of the metric.
2342
+ # Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
2343
+ # @return [Array<String>]
2344
+ attr_accessor :time_series_resource_hierarchy_level
2345
+
2317
2346
  def initialize(**args)
2318
2347
  update!(**args)
2319
2348
  end
@@ -2323,6 +2352,7 @@ module Google
2323
2352
  @ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
2324
2353
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
2325
2354
  @sample_period = args[:sample_period] if args.key?(:sample_period)
2355
+ @time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
2326
2356
  end
2327
2357
  end
2328
2358
 
@@ -2898,6 +2928,12 @@ module Google
2898
2928
  # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
2899
2929
  attr_accessor :common
2900
2930
 
2931
+ # Experimental features to be included during client library generation. These
2932
+ # fields will be deprecated once the feature graduates and is enabled by default.
2933
+ # Corresponds to the JSON property `experimentalFeatures`
2934
+ # @return [Google::Apis::ServiceconsumermanagementV1::ExperimentalFeatures]
2935
+ attr_accessor :experimental_features
2936
+
2901
2937
  def initialize(**args)
2902
2938
  update!(**args)
2903
2939
  end
@@ -2905,6 +2941,7 @@ module Google
2905
2941
  # Update properties of this object
2906
2942
  def update!(**args)
2907
2943
  @common = args[:common] if args.key?(:common)
2944
+ @experimental_features = args[:experimental_features] if args.key?(:experimental_features)
2908
2945
  end
2909
2946
  end
2910
2947
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240712"
25
+ REVISION = "20240905"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,12 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class ExperimentalFeatures
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class Field
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -981,6 +987,13 @@ module Google
981
987
  end
982
988
  end
983
989
 
990
+ class ExperimentalFeatures
991
+ # @private
992
+ class Representation < Google::Apis::Core::JsonRepresentation
993
+ property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
994
+ end
995
+ end
996
+
984
997
  class Field
985
998
  # @private
986
999
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1186,6 +1199,7 @@ module Google
1186
1199
  property :ingest_delay, as: 'ingestDelay'
1187
1200
  property :launch_stage, as: 'launchStage'
1188
1201
  property :sample_period, as: 'samplePeriod'
1202
+ collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
1189
1203
  end
1190
1204
  end
1191
1205
 
@@ -1321,6 +1335,8 @@ module Google
1321
1335
  class Representation < Google::Apis::Core::JsonRepresentation
1322
1336
  property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
1323
1337
 
1338
+ property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServiceconsumermanagementV1::ExperimentalFeatures, decorator: Google::Apis::ServiceconsumermanagementV1::ExperimentalFeatures::Representation
1339
+
1324
1340
  end
1325
1341
  end
1326
1342
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceconsumermanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.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: 2024-07-25 00:00:00.000000000 Z
11
+ date: 2024-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.50.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []