google-apis-servicemanagement_v1 0.58.0 → 0.59.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f154a29d84ab8268bb72ebc159352b170276eebc97647139efbef33dac5043d0
|
4
|
+
data.tar.gz: 23e6deef87c50394e37396ae1d49fc8d80e4b7d209c4e9afa6f531f5a30f699a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a308cc3de3d8737a588b4e99864ef5d1be8cc9e66fae50f893d8f7c9de86a9ba289b6f85aec4998d65b2c2f1ddef550159cdee2b6bc233e0973ccbc76569880e
|
7
|
+
data.tar.gz: efd57422955a6fa145f91bd2e15c6dbfd11382a5cefcb4c6ab80fdc288d1c8121652a2f62ff7c60f77e292c2012c25f14020a78a729a6225fc750146ec0eefec
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-servicemanagement_v1
|
2
2
|
|
3
|
+
### v0.59.0 (2024-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240823
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.58.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240712
|
@@ -1544,6 +1544,30 @@ module Google
|
|
1544
1544
|
end
|
1545
1545
|
end
|
1546
1546
|
|
1547
|
+
# Experimental features to be included during client library generation. These
|
1548
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
1549
|
+
class ExperimentalFeatures
|
1550
|
+
include Google::Apis::Core::Hashable
|
1551
|
+
|
1552
|
+
# Enables generation of asynchronous REST clients if `rest` transport is enabled.
|
1553
|
+
# By default, asynchronous REST clients will not be generated. This feature
|
1554
|
+
# will be enabled by default 1 month after launching the feature in preview
|
1555
|
+
# packages.
|
1556
|
+
# Corresponds to the JSON property `restAsyncIoEnabled`
|
1557
|
+
# @return [Boolean]
|
1558
|
+
attr_accessor :rest_async_io_enabled
|
1559
|
+
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1560
|
+
|
1561
|
+
def initialize(**args)
|
1562
|
+
update!(**args)
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
# Update properties of this object
|
1566
|
+
def update!(**args)
|
1567
|
+
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1568
|
+
end
|
1569
|
+
end
|
1570
|
+
|
1547
1571
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
1548
1572
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
1549
1573
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -2814,6 +2838,11 @@ module Google
|
|
2814
2838
|
# @return [String]
|
2815
2839
|
attr_accessor :sample_period
|
2816
2840
|
|
2841
|
+
# The scope of the timeseries data of the metric.
|
2842
|
+
# Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
|
2843
|
+
# @return [Array<String>]
|
2844
|
+
attr_accessor :time_series_resource_hierarchy_level
|
2845
|
+
|
2817
2846
|
def initialize(**args)
|
2818
2847
|
update!(**args)
|
2819
2848
|
end
|
@@ -2823,6 +2852,7 @@ module Google
|
|
2823
2852
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
2824
2853
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
2825
2854
|
@sample_period = args[:sample_period] if args.key?(:sample_period)
|
2855
|
+
@time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
|
2826
2856
|
end
|
2827
2857
|
end
|
2828
2858
|
|
@@ -3537,6 +3567,12 @@ module Google
|
|
3537
3567
|
# @return [Google::Apis::ServicemanagementV1::CommonLanguageSettings]
|
3538
3568
|
attr_accessor :common
|
3539
3569
|
|
3570
|
+
# Experimental features to be included during client library generation. These
|
3571
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
3572
|
+
# Corresponds to the JSON property `experimentalFeatures`
|
3573
|
+
# @return [Google::Apis::ServicemanagementV1::ExperimentalFeatures]
|
3574
|
+
attr_accessor :experimental_features
|
3575
|
+
|
3540
3576
|
def initialize(**args)
|
3541
3577
|
update!(**args)
|
3542
3578
|
end
|
@@ -3544,6 +3580,7 @@ module Google
|
|
3544
3580
|
# Update properties of this object
|
3545
3581
|
def update!(**args)
|
3546
3582
|
@common = args[:common] if args.key?(:common)
|
3583
|
+
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
3547
3584
|
end
|
3548
3585
|
end
|
3549
3586
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicemanagementV1
|
18
18
|
# Version of the google-apis-servicemanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.59.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240823"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -238,6 +238,12 @@ module Google
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
239
239
|
end
|
240
240
|
|
241
|
+
class ExperimentalFeatures
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
241
247
|
class Expr
|
242
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
249
|
|
@@ -1009,6 +1015,13 @@ module Google
|
|
1009
1015
|
end
|
1010
1016
|
end
|
1011
1017
|
|
1018
|
+
class ExperimentalFeatures
|
1019
|
+
# @private
|
1020
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1021
|
+
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1022
|
+
end
|
1023
|
+
end
|
1024
|
+
|
1012
1025
|
class Expr
|
1013
1026
|
# @private
|
1014
1027
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1293,6 +1306,7 @@ module Google
|
|
1293
1306
|
property :ingest_delay, as: 'ingestDelay'
|
1294
1307
|
property :launch_stage, as: 'launchStage'
|
1295
1308
|
property :sample_period, as: 'samplePeriod'
|
1309
|
+
collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
|
1296
1310
|
end
|
1297
1311
|
end
|
1298
1312
|
|
@@ -1451,6 +1465,8 @@ module Google
|
|
1451
1465
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1452
1466
|
property :common, as: 'common', class: Google::Apis::ServicemanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServicemanagementV1::CommonLanguageSettings::Representation
|
1453
1467
|
|
1468
|
+
property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServicemanagementV1::ExperimentalFeatures, decorator: Google::Apis::ServicemanagementV1::ExperimentalFeatures::Representation
|
1469
|
+
|
1454
1470
|
end
|
1455
1471
|
end
|
1456
1472
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicemanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.59.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-
|
11
|
+
date: 2024-09-01 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-servicemanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.59.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicemanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|