google-apis-servicemanagement_v1 0.58.0 → 0.60.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: 59a41bd5352fda184073f5bedd50d5139b4d5b810b3ab6545663c14af9e39c00
|
4
|
+
data.tar.gz: eee28dd54ac27cfe9ed923075992c0db0127d0c75bf14856a63d13638c56dd4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdb26f4b776558191f4a974ba2325f69251cdc2ca683fbf5b0800bd8f978f5607265362f991e36a724aabb8f90b35b510fff412b765ca315654fb57b3e017fc9
|
7
|
+
data.tar.gz: 2c579692e300902d025cdaa7a18051e75317d941cf0e7f4169634c60cd0cd5ad1f7ef1d85dd17d255a65e080c21600b7a572576e32694180f0e632006fdfb40b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-servicemanagement_v1
|
2
2
|
|
3
|
+
### v0.60.0 (2024-09-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240920
|
6
|
+
|
7
|
+
### v0.59.0 (2024-09-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240823
|
10
|
+
* Regenerated using generator version 0.15.1
|
11
|
+
|
3
12
|
### v0.58.0 (2024-07-25)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240712
|
@@ -792,6 +792,12 @@ module Google
|
|
792
792
|
# @return [String]
|
793
793
|
attr_accessor :reference_docs_uri
|
794
794
|
|
795
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
796
|
+
# service for client libraries.
|
797
|
+
# Corresponds to the JSON property `selectiveGapicGeneration`
|
798
|
+
# @return [Google::Apis::ServicemanagementV1::SelectiveGapicGeneration]
|
799
|
+
attr_accessor :selective_gapic_generation
|
800
|
+
|
795
801
|
def initialize(**args)
|
796
802
|
update!(**args)
|
797
803
|
end
|
@@ -800,6 +806,7 @@ module Google
|
|
800
806
|
def update!(**args)
|
801
807
|
@destinations = args[:destinations] if args.key?(:destinations)
|
802
808
|
@reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
|
809
|
+
@selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
|
803
810
|
end
|
804
811
|
end
|
805
812
|
|
@@ -1544,6 +1551,30 @@ module Google
|
|
1544
1551
|
end
|
1545
1552
|
end
|
1546
1553
|
|
1554
|
+
# Experimental features to be included during client library generation. These
|
1555
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
1556
|
+
class ExperimentalFeatures
|
1557
|
+
include Google::Apis::Core::Hashable
|
1558
|
+
|
1559
|
+
# Enables generation of asynchronous REST clients if `rest` transport is enabled.
|
1560
|
+
# By default, asynchronous REST clients will not be generated. This feature
|
1561
|
+
# will be enabled by default 1 month after launching the feature in preview
|
1562
|
+
# packages.
|
1563
|
+
# Corresponds to the JSON property `restAsyncIoEnabled`
|
1564
|
+
# @return [Boolean]
|
1565
|
+
attr_accessor :rest_async_io_enabled
|
1566
|
+
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1567
|
+
|
1568
|
+
def initialize(**args)
|
1569
|
+
update!(**args)
|
1570
|
+
end
|
1571
|
+
|
1572
|
+
# Update properties of this object
|
1573
|
+
def update!(**args)
|
1574
|
+
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1575
|
+
end
|
1576
|
+
end
|
1577
|
+
|
1547
1578
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
1548
1579
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
1549
1580
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -2814,6 +2845,11 @@ module Google
|
|
2814
2845
|
# @return [String]
|
2815
2846
|
attr_accessor :sample_period
|
2816
2847
|
|
2848
|
+
# The scope of the timeseries data of the metric.
|
2849
|
+
# Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
|
2850
|
+
# @return [Array<String>]
|
2851
|
+
attr_accessor :time_series_resource_hierarchy_level
|
2852
|
+
|
2817
2853
|
def initialize(**args)
|
2818
2854
|
update!(**args)
|
2819
2855
|
end
|
@@ -2823,6 +2859,7 @@ module Google
|
|
2823
2859
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
2824
2860
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
2825
2861
|
@sample_period = args[:sample_period] if args.key?(:sample_period)
|
2862
|
+
@time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
|
2826
2863
|
end
|
2827
2864
|
end
|
2828
2865
|
|
@@ -3537,6 +3574,12 @@ module Google
|
|
3537
3574
|
# @return [Google::Apis::ServicemanagementV1::CommonLanguageSettings]
|
3538
3575
|
attr_accessor :common
|
3539
3576
|
|
3577
|
+
# Experimental features to be included during client library generation. These
|
3578
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
3579
|
+
# Corresponds to the JSON property `experimentalFeatures`
|
3580
|
+
# @return [Google::Apis::ServicemanagementV1::ExperimentalFeatures]
|
3581
|
+
attr_accessor :experimental_features
|
3582
|
+
|
3540
3583
|
def initialize(**args)
|
3541
3584
|
update!(**args)
|
3542
3585
|
end
|
@@ -3544,6 +3587,7 @@ module Google
|
|
3544
3587
|
# Update properties of this object
|
3545
3588
|
def update!(**args)
|
3546
3589
|
@common = args[:common] if args.key?(:common)
|
3590
|
+
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
3547
3591
|
end
|
3548
3592
|
end
|
3549
3593
|
|
@@ -3825,6 +3869,27 @@ module Google
|
|
3825
3869
|
end
|
3826
3870
|
end
|
3827
3871
|
|
3872
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
3873
|
+
# service for client libraries.
|
3874
|
+
class SelectiveGapicGeneration
|
3875
|
+
include Google::Apis::Core::Hashable
|
3876
|
+
|
3877
|
+
# An allowlist of the fully qualified names of RPCs that should be included on
|
3878
|
+
# public client surfaces.
|
3879
|
+
# Corresponds to the JSON property `methods`
|
3880
|
+
# @return [Array<String>]
|
3881
|
+
attr_accessor :methods_prop
|
3882
|
+
|
3883
|
+
def initialize(**args)
|
3884
|
+
update!(**args)
|
3885
|
+
end
|
3886
|
+
|
3887
|
+
# Update properties of this object
|
3888
|
+
def update!(**args)
|
3889
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
3890
|
+
end
|
3891
|
+
end
|
3892
|
+
|
3828
3893
|
# `Service` is the root object of Google API service configuration (service
|
3829
3894
|
# config). It describes the basic information about a logical service, such as
|
3830
3895
|
# the service name and the user-facing title, and delegates other aspects to sub-
|
@@ -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.60.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 = "20240920"
|
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
|
|
@@ -532,6 +538,12 @@ module Google
|
|
532
538
|
include Google::Apis::Core::JsonObjectSupport
|
533
539
|
end
|
534
540
|
|
541
|
+
class SelectiveGapicGeneration
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
535
547
|
class Service
|
536
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
549
|
|
@@ -813,6 +825,8 @@ module Google
|
|
813
825
|
class Representation < Google::Apis::Core::JsonRepresentation
|
814
826
|
collection :destinations, as: 'destinations'
|
815
827
|
property :reference_docs_uri, as: 'referenceDocsUri'
|
828
|
+
property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServicemanagementV1::SelectiveGapicGeneration, decorator: Google::Apis::ServicemanagementV1::SelectiveGapicGeneration::Representation
|
829
|
+
|
816
830
|
end
|
817
831
|
end
|
818
832
|
|
@@ -1009,6 +1023,13 @@ module Google
|
|
1009
1023
|
end
|
1010
1024
|
end
|
1011
1025
|
|
1026
|
+
class ExperimentalFeatures
|
1027
|
+
# @private
|
1028
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1029
|
+
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1030
|
+
end
|
1031
|
+
end
|
1032
|
+
|
1012
1033
|
class Expr
|
1013
1034
|
# @private
|
1014
1035
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1293,6 +1314,7 @@ module Google
|
|
1293
1314
|
property :ingest_delay, as: 'ingestDelay'
|
1294
1315
|
property :launch_stage, as: 'launchStage'
|
1295
1316
|
property :sample_period, as: 'samplePeriod'
|
1317
|
+
collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
|
1296
1318
|
end
|
1297
1319
|
end
|
1298
1320
|
|
@@ -1451,6 +1473,8 @@ module Google
|
|
1451
1473
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1452
1474
|
property :common, as: 'common', class: Google::Apis::ServicemanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServicemanagementV1::CommonLanguageSettings::Representation
|
1453
1475
|
|
1476
|
+
property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServicemanagementV1::ExperimentalFeatures, decorator: Google::Apis::ServicemanagementV1::ExperimentalFeatures::Representation
|
1477
|
+
|
1454
1478
|
end
|
1455
1479
|
end
|
1456
1480
|
|
@@ -1511,6 +1535,13 @@ module Google
|
|
1511
1535
|
end
|
1512
1536
|
end
|
1513
1537
|
|
1538
|
+
class SelectiveGapicGeneration
|
1539
|
+
# @private
|
1540
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1541
|
+
collection :methods_prop, as: 'methods'
|
1542
|
+
end
|
1543
|
+
end
|
1544
|
+
|
1514
1545
|
class Service
|
1515
1546
|
# @private
|
1516
1547
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.60.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-29 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.60.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: []
|