google-apis-serviceusage_v1beta1 0.38.0 → 0.39.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63e3d521426ff5fd6f8ae56b3c2a77e9b7f9deec67a3a4b5743d054f9abb95d5
|
4
|
+
data.tar.gz: e141c1126ede69c4feff457061761b8a94b70601cc9845c47c3a65155d425b1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f382c08866c33fa4c88bed21413eb635cc61269e2997e2606c2f8f536a6036a83b2575a9e018cc5e88ebaecc06117f25fd311dbd84730f9510946132137da21
|
7
|
+
data.tar.gz: 1cf6a9f50784de74ff1451fc042e291710cb6ed56b69c10bce2aaa1ad9d77fda92d57310fec8b7240797c3263231f23fe91aca1f32ddcc80d26d7fb02ea33a7c
|
data/CHANGELOG.md
CHANGED
@@ -39,6 +39,11 @@ module Google
|
|
39
39
|
class AddEnableRulesResponse
|
40
40
|
include Google::Apis::Core::Hashable
|
41
41
|
|
42
|
+
# The values added to the parent consumer policy.
|
43
|
+
# Corresponds to the JSON property `addedValues`
|
44
|
+
# @return [Array<String>]
|
45
|
+
attr_accessor :added_values
|
46
|
+
|
42
47
|
# The parent consumer policy. It can be `projects/12345/consumerPolicies/default`
|
43
48
|
# , or `folders/12345/consumerPolicies/default`, or `organizations/12345/
|
44
49
|
# consumerPolicies/default`.
|
@@ -46,19 +51,14 @@ module Google
|
|
46
51
|
# @return [String]
|
47
52
|
attr_accessor :parent
|
48
53
|
|
49
|
-
# The values added to the parent consumer policy.
|
50
|
-
# Corresponds to the JSON property `values`
|
51
|
-
# @return [Array<Google::Apis::ServiceusageV1beta1::ValueInfo>]
|
52
|
-
attr_accessor :values
|
53
|
-
|
54
54
|
def initialize(**args)
|
55
55
|
update!(**args)
|
56
56
|
end
|
57
57
|
|
58
58
|
# Update properties of this object
|
59
59
|
def update!(**args)
|
60
|
+
@added_values = args[:added_values] if args.key?(:added_values)
|
60
61
|
@parent = args[:parent] if args.key?(:parent)
|
61
|
-
@values = args[:values] if args.key?(:values)
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
@@ -2394,25 +2394,6 @@ module Google
|
|
2394
2394
|
end
|
2395
2395
|
end
|
2396
2396
|
|
2397
|
-
# Unimplemented. Do not use. GroupValue contains information of a service group.
|
2398
|
-
class GroupValue
|
2399
|
-
include Google::Apis::Core::Hashable
|
2400
|
-
|
2401
|
-
# The name of the value. Example: `groups/googleSerivice`.
|
2402
|
-
# Corresponds to the JSON property `name`
|
2403
|
-
# @return [String]
|
2404
|
-
attr_accessor :name
|
2405
|
-
|
2406
|
-
def initialize(**args)
|
2407
|
-
update!(**args)
|
2408
|
-
end
|
2409
|
-
|
2410
|
-
# Update properties of this object
|
2411
|
-
def update!(**args)
|
2412
|
-
@name = args[:name] if args.key?(:name)
|
2413
|
-
end
|
2414
|
-
end
|
2415
|
-
|
2416
2397
|
# Defines the HTTP configuration for an API service. It contains a list of
|
2417
2398
|
# HttpRule, each specifying the mapping of an RPC method to one or more HTTP
|
2418
2399
|
# REST API methods.
|
@@ -4388,6 +4369,11 @@ module Google
|
|
4388
4369
|
# @return [String]
|
4389
4370
|
attr_accessor :parent
|
4390
4371
|
|
4372
|
+
# The values removed from the parent consumer policy.
|
4373
|
+
# Corresponds to the JSON property `removedValues`
|
4374
|
+
# @return [Array<String>]
|
4375
|
+
attr_accessor :removed_values
|
4376
|
+
|
4391
4377
|
def initialize(**args)
|
4392
4378
|
update!(**args)
|
4393
4379
|
end
|
@@ -4395,6 +4381,7 @@ module Google
|
|
4395
4381
|
# Update properties of this object
|
4396
4382
|
def update!(**args)
|
4397
4383
|
@parent = args[:parent] if args.key?(:parent)
|
4384
|
+
@removed_values = args[:removed_values] if args.key?(:removed_values)
|
4398
4385
|
end
|
4399
4386
|
end
|
4400
4387
|
|
@@ -4630,44 +4617,6 @@ module Google
|
|
4630
4617
|
end
|
4631
4618
|
end
|
4632
4619
|
|
4633
|
-
# ServiceValue contains information of a service.
|
4634
|
-
class ServiceValue
|
4635
|
-
include Google::Apis::Core::Hashable
|
4636
|
-
|
4637
|
-
# The DNS address at which this service is available.
|
4638
|
-
# Corresponds to the JSON property `dnsAddress`
|
4639
|
-
# @return [String]
|
4640
|
-
attr_accessor :dns_address
|
4641
|
-
|
4642
|
-
# The name of the value. Example: `services/storage.googleapis.com`.
|
4643
|
-
# Corresponds to the JSON property `name`
|
4644
|
-
# @return [String]
|
4645
|
-
attr_accessor :name
|
4646
|
-
|
4647
|
-
# A link to pricing information for the service, such as https://cloud.google.
|
4648
|
-
# com/bigquery/pricing.
|
4649
|
-
# Corresponds to the JSON property `pricingLink`
|
4650
|
-
# @return [String]
|
4651
|
-
attr_accessor :pricing_link
|
4652
|
-
|
4653
|
-
# Terms of Service
|
4654
|
-
# Corresponds to the JSON property `tos`
|
4655
|
-
# @return [Array<Google::Apis::ServiceusageV1beta1::TermsOfService>]
|
4656
|
-
attr_accessor :tos
|
4657
|
-
|
4658
|
-
def initialize(**args)
|
4659
|
-
update!(**args)
|
4660
|
-
end
|
4661
|
-
|
4662
|
-
# Update properties of this object
|
4663
|
-
def update!(**args)
|
4664
|
-
@dns_address = args[:dns_address] if args.key?(:dns_address)
|
4665
|
-
@name = args[:name] if args.key?(:name)
|
4666
|
-
@pricing_link = args[:pricing_link] if args.key?(:pricing_link)
|
4667
|
-
@tos = args[:tos] if args.key?(:tos)
|
4668
|
-
end
|
4669
|
-
end
|
4670
|
-
|
4671
4620
|
# `SourceContext` represents information about the source of a protobuf element,
|
4672
4621
|
# like the file in which it is defined.
|
4673
4622
|
class SourceContext
|
@@ -4841,31 +4790,6 @@ module Google
|
|
4841
4790
|
end
|
4842
4791
|
end
|
4843
4792
|
|
4844
|
-
# TermsOfService captures the metadata about a given terms of service
|
4845
|
-
class TermsOfService
|
4846
|
-
include Google::Apis::Core::Hashable
|
4847
|
-
|
4848
|
-
# Title of the terms of service.
|
4849
|
-
# Corresponds to the JSON property `title`
|
4850
|
-
# @return [String]
|
4851
|
-
attr_accessor :title
|
4852
|
-
|
4853
|
-
# URL/URI of the terms of service.
|
4854
|
-
# Corresponds to the JSON property `uri`
|
4855
|
-
# @return [String]
|
4856
|
-
attr_accessor :uri
|
4857
|
-
|
4858
|
-
def initialize(**args)
|
4859
|
-
update!(**args)
|
4860
|
-
end
|
4861
|
-
|
4862
|
-
# Update properties of this object
|
4863
|
-
def update!(**args)
|
4864
|
-
@title = args[:title] if args.key?(:title)
|
4865
|
-
@uri = args[:uri] if args.key?(:uri)
|
4866
|
-
end
|
4867
|
-
end
|
4868
|
-
|
4869
4793
|
# A protocol buffer message type.
|
4870
4794
|
class Type
|
4871
4795
|
include Google::Apis::Core::Hashable
|
@@ -5039,50 +4963,6 @@ module Google
|
|
5039
4963
|
@skip_service_control = args[:skip_service_control] if args.key?(:skip_service_control)
|
5040
4964
|
end
|
5041
4965
|
end
|
5042
|
-
|
5043
|
-
# Information about the value field. Only support value type as service now.
|
5044
|
-
class ValueInfo
|
5045
|
-
include Google::Apis::Core::Hashable
|
5046
|
-
|
5047
|
-
# Unimplemented. Do not use. GroupValue contains information of a service group.
|
5048
|
-
# Corresponds to the JSON property `groupValue`
|
5049
|
-
# @return [Google::Apis::ServiceusageV1beta1::GroupValue]
|
5050
|
-
attr_accessor :group_value
|
5051
|
-
|
5052
|
-
# For public services, it must point to the product landing page. For private
|
5053
|
-
# services, it should point to the internal site. For service group, it is TBD.
|
5054
|
-
# Corresponds to the JSON property `learnmoreLink`
|
5055
|
-
# @return [String]
|
5056
|
-
attr_accessor :learnmore_link
|
5057
|
-
|
5058
|
-
# ServiceValue contains information of a service.
|
5059
|
-
# Corresponds to the JSON property `serviceValue`
|
5060
|
-
# @return [Google::Apis::ServiceusageV1beta1::ServiceValue]
|
5061
|
-
attr_accessor :service_value
|
5062
|
-
|
5063
|
-
# The product summary for this value.
|
5064
|
-
# Corresponds to the JSON property `summary`
|
5065
|
-
# @return [String]
|
5066
|
-
attr_accessor :summary
|
5067
|
-
|
5068
|
-
# The product title for this value.
|
5069
|
-
# Corresponds to the JSON property `title`
|
5070
|
-
# @return [String]
|
5071
|
-
attr_accessor :title
|
5072
|
-
|
5073
|
-
def initialize(**args)
|
5074
|
-
update!(**args)
|
5075
|
-
end
|
5076
|
-
|
5077
|
-
# Update properties of this object
|
5078
|
-
def update!(**args)
|
5079
|
-
@group_value = args[:group_value] if args.key?(:group_value)
|
5080
|
-
@learnmore_link = args[:learnmore_link] if args.key?(:learnmore_link)
|
5081
|
-
@service_value = args[:service_value] if args.key?(:service_value)
|
5082
|
-
@summary = args[:summary] if args.key?(:summary)
|
5083
|
-
@title = args[:title] if args.key?(:title)
|
5084
|
-
end
|
5085
|
-
end
|
5086
4966
|
end
|
5087
4967
|
end
|
5088
4968
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServiceusageV1beta1
|
18
18
|
# Version of the google-apis-serviceusage_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230607"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -340,12 +340,6 @@ module Google
|
|
340
340
|
include Google::Apis::Core::JsonObjectSupport
|
341
341
|
end
|
342
342
|
|
343
|
-
class GroupValue
|
344
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
-
|
346
|
-
include Google::Apis::Core::JsonObjectSupport
|
347
|
-
end
|
348
|
-
|
349
343
|
class Http
|
350
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
345
|
|
@@ -652,12 +646,6 @@ module Google
|
|
652
646
|
include Google::Apis::Core::JsonObjectSupport
|
653
647
|
end
|
654
648
|
|
655
|
-
class ServiceValue
|
656
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
|
-
|
658
|
-
include Google::Apis::Core::JsonObjectSupport
|
659
|
-
end
|
660
|
-
|
661
649
|
class SourceContext
|
662
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
663
651
|
|
@@ -694,12 +682,6 @@ module Google
|
|
694
682
|
include Google::Apis::Core::JsonObjectSupport
|
695
683
|
end
|
696
684
|
|
697
|
-
class TermsOfService
|
698
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
699
|
-
|
700
|
-
include Google::Apis::Core::JsonObjectSupport
|
701
|
-
end
|
702
|
-
|
703
685
|
class Type
|
704
686
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
687
|
|
@@ -730,12 +712,6 @@ module Google
|
|
730
712
|
include Google::Apis::Core::JsonObjectSupport
|
731
713
|
end
|
732
714
|
|
733
|
-
class ValueInfo
|
734
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
-
|
736
|
-
include Google::Apis::Core::JsonObjectSupport
|
737
|
-
end
|
738
|
-
|
739
715
|
class AddEnableRulesMetadata
|
740
716
|
# @private
|
741
717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -745,9 +721,8 @@ module Google
|
|
745
721
|
class AddEnableRulesResponse
|
746
722
|
# @private
|
747
723
|
class Representation < Google::Apis::Core::JsonRepresentation
|
724
|
+
collection :added_values, as: 'addedValues'
|
748
725
|
property :parent, as: 'parent'
|
749
|
-
collection :values, as: 'values', class: Google::Apis::ServiceusageV1beta1::ValueInfo, decorator: Google::Apis::ServiceusageV1beta1::ValueInfo::Representation
|
750
|
-
|
751
726
|
end
|
752
727
|
end
|
753
728
|
|
@@ -1321,13 +1296,6 @@ module Google
|
|
1321
1296
|
end
|
1322
1297
|
end
|
1323
1298
|
|
1324
|
-
class GroupValue
|
1325
|
-
# @private
|
1326
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1327
|
-
property :name, as: 'name'
|
1328
|
-
end
|
1329
|
-
end
|
1330
|
-
|
1331
1299
|
class Http
|
1332
1300
|
# @private
|
1333
1301
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1785,6 +1753,7 @@ module Google
|
|
1785
1753
|
# @private
|
1786
1754
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1787
1755
|
property :parent, as: 'parent'
|
1756
|
+
collection :removed_values, as: 'removedValues'
|
1788
1757
|
end
|
1789
1758
|
end
|
1790
1759
|
|
@@ -1839,17 +1808,6 @@ module Google
|
|
1839
1808
|
end
|
1840
1809
|
end
|
1841
1810
|
|
1842
|
-
class ServiceValue
|
1843
|
-
# @private
|
1844
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1845
|
-
property :dns_address, as: 'dnsAddress'
|
1846
|
-
property :name, as: 'name'
|
1847
|
-
property :pricing_link, as: 'pricingLink'
|
1848
|
-
collection :tos, as: 'tos', class: Google::Apis::ServiceusageV1beta1::TermsOfService, decorator: Google::Apis::ServiceusageV1beta1::TermsOfService::Representation
|
1849
|
-
|
1850
|
-
end
|
1851
|
-
end
|
1852
|
-
|
1853
1811
|
class SourceContext
|
1854
1812
|
# @private
|
1855
1813
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1899,14 +1857,6 @@ module Google
|
|
1899
1857
|
end
|
1900
1858
|
end
|
1901
1859
|
|
1902
|
-
class TermsOfService
|
1903
|
-
# @private
|
1904
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1905
|
-
property :title, as: 'title'
|
1906
|
-
property :uri, as: 'uri'
|
1907
|
-
end
|
1908
|
-
end
|
1909
|
-
|
1910
1860
|
class Type
|
1911
1861
|
# @private
|
1912
1862
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1953,19 +1903,6 @@ module Google
|
|
1953
1903
|
property :skip_service_control, as: 'skipServiceControl'
|
1954
1904
|
end
|
1955
1905
|
end
|
1956
|
-
|
1957
|
-
class ValueInfo
|
1958
|
-
# @private
|
1959
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1960
|
-
property :group_value, as: 'groupValue', class: Google::Apis::ServiceusageV1beta1::GroupValue, decorator: Google::Apis::ServiceusageV1beta1::GroupValue::Representation
|
1961
|
-
|
1962
|
-
property :learnmore_link, as: 'learnmoreLink'
|
1963
|
-
property :service_value, as: 'serviceValue', class: Google::Apis::ServiceusageV1beta1::ServiceValue, decorator: Google::Apis::ServiceusageV1beta1::ServiceValue::Representation
|
1964
|
-
|
1965
|
-
property :summary, as: 'summary'
|
1966
|
-
property :title, as: 'title'
|
1967
|
-
end
|
1968
|
-
end
|
1969
1906
|
end
|
1970
1907
|
end
|
1971
1908
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-serviceusage_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.39.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: 2023-
|
11
|
+
date: 2023-06-11 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-serviceusage_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.39.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|