google-apis-serviceusage_v1beta1 0.37.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: '078dbd62d48c6bb0fc8fc3e556f4c8dfcf30616c8641c514d2ff0dff25ffd4f4'
4
- data.tar.gz: 6d91f51d9f651eb263686cce9e44c64a7b5729a9ece60fdc49a44f8d518de22e
3
+ metadata.gz: 63e3d521426ff5fd6f8ae56b3c2a77e9b7f9deec67a3a4b5743d054f9abb95d5
4
+ data.tar.gz: e141c1126ede69c4feff457061761b8a94b70601cc9845c47c3a65155d425b1e
5
5
  SHA512:
6
- metadata.gz: e792645901a38212972cd765700fb306d9d6ce9edb8dad54c5d810d429b129084a39c08ef5203e969a0a8a7ee878c5e0363881fb0dce8c2775f1b25f28cedc7d
7
- data.tar.gz: f073984b808f25a2b93f3903ddcf90b4858cdbc4bd359508f610c822c1f47617f2842b761517947b5dda36cbb60df2e24a5adbf2f2a49b402f9029ccb8b3b627
6
+ metadata.gz: 9f382c08866c33fa4c88bed21413eb635cc61269e2997e2606c2f8f536a6036a83b2575a9e018cc5e88ebaecc06117f25fd311dbd84730f9510946132137da21
7
+ data.tar.gz: 1cf6a9f50784de74ff1451fc042e291710cb6ed56b69c10bce2aaa1ad9d77fda92d57310fec8b7240797c3263231f23fe91aca1f32ddcc80d26d7fb02ea33a7c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
2
2
 
3
+ ### v0.39.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230607
6
+
7
+ ### v0.38.0 (2023-05-14)
8
+
9
+ * Regenerated from discovery document revision 20230508
10
+
3
11
  ### v0.37.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230426
@@ -22,6 +22,46 @@ module Google
22
22
  module Apis
23
23
  module ServiceusageV1beta1
24
24
 
25
+ # Metadata for the `AddEnableRules` method.
26
+ class AddEnableRulesMetadata
27
+ include Google::Apis::Core::Hashable
28
+
29
+ def initialize(**args)
30
+ update!(**args)
31
+ end
32
+
33
+ # Update properties of this object
34
+ def update!(**args)
35
+ end
36
+ end
37
+
38
+ # The response message of "AddEnableRules" method.
39
+ class AddEnableRulesResponse
40
+ include Google::Apis::Core::Hashable
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
+
47
+ # The parent consumer policy. It can be `projects/12345/consumerPolicies/default`
48
+ # , or `folders/12345/consumerPolicies/default`, or `organizations/12345/
49
+ # consumerPolicies/default`.
50
+ # Corresponds to the JSON property `parent`
51
+ # @return [String]
52
+ attr_accessor :parent
53
+
54
+ def initialize(**args)
55
+ update!(**args)
56
+ end
57
+
58
+ # Update properties of this object
59
+ def update!(**args)
60
+ @added_values = args[:added_values] if args.key?(:added_values)
61
+ @parent = args[:parent] if args.key?(:parent)
62
+ end
63
+ end
64
+
25
65
  # Quota policy created by quota administrator.
26
66
  class AdminQuotaPolicy
27
67
  include Google::Apis::Core::Hashable
@@ -766,9 +806,10 @@ module Google
766
806
  # @return [String]
767
807
  attr_accessor :etag
768
808
 
769
- # Output only. The resource name of the policy. For example, `projects/12345/
770
- # consumerPolicy`, `folders/12345/consumerPolicy`, `organizations/12345/
771
- # consumerPolicy`.
809
+ # Output only. The resource name of the policy. For example, We only allow
810
+ # consumer policy name as "default" for now: `projects/12345/consumerPolicies/
811
+ # default`, `folders/12345/consumerPolicies/default`, `organizations/12345/
812
+ # consumerPolicies/default`. Legacy format: `projects/12345/consumerPoly`
772
813
  # Corresponds to the JSON property `name`
773
814
  # @return [String]
774
815
  attr_accessor :name
@@ -4304,6 +4345,46 @@ module Google
4304
4345
  end
4305
4346
  end
4306
4347
 
4348
+ # Metadata for the `RemoveEnableRules` method.
4349
+ class RemoveEnableRulesMetadata
4350
+ include Google::Apis::Core::Hashable
4351
+
4352
+ def initialize(**args)
4353
+ update!(**args)
4354
+ end
4355
+
4356
+ # Update properties of this object
4357
+ def update!(**args)
4358
+ end
4359
+ end
4360
+
4361
+ # The response message of "RemoveEnableRules" method.
4362
+ class RemoveEnableRulesResponse
4363
+ include Google::Apis::Core::Hashable
4364
+
4365
+ # The parent consumer policy. It can be `projects/12345/consumerPolicies/default`
4366
+ # , or `folders/12345/consumerPolicies/default`, or `organizations/12345/
4367
+ # consumerPolicies/default`.
4368
+ # Corresponds to the JSON property `parent`
4369
+ # @return [String]
4370
+ attr_accessor :parent
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
+
4377
+ def initialize(**args)
4378
+ update!(**args)
4379
+ end
4380
+
4381
+ # Update properties of this object
4382
+ def update!(**args)
4383
+ @parent = args[:parent] if args.key?(:parent)
4384
+ @removed_values = args[:removed_values] if args.key?(:removed_values)
4385
+ end
4386
+ end
4387
+
4307
4388
  # Settings for Ruby client libraries.
4308
4389
  class RubySettings
4309
4390
  include Google::Apis::Core::Hashable
@@ -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.37.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 = "20230426"
25
+ REVISION = "20230607"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,18 @@ module Google
22
22
  module Apis
23
23
  module ServiceusageV1beta1
24
24
 
25
+ class AddEnableRulesMetadata
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class AddEnableRulesResponse
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
25
37
  class AdminQuotaPolicy
26
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
39
 
@@ -598,6 +610,18 @@ module Google
598
610
  include Google::Apis::Core::JsonObjectSupport
599
611
  end
600
612
 
613
+ class RemoveEnableRulesMetadata
614
+ class Representation < Google::Apis::Core::JsonRepresentation; end
615
+
616
+ include Google::Apis::Core::JsonObjectSupport
617
+ end
618
+
619
+ class RemoveEnableRulesResponse
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
601
625
  class RubySettings
602
626
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
627
 
@@ -688,6 +712,20 @@ module Google
688
712
  include Google::Apis::Core::JsonObjectSupport
689
713
  end
690
714
 
715
+ class AddEnableRulesMetadata
716
+ # @private
717
+ class Representation < Google::Apis::Core::JsonRepresentation
718
+ end
719
+ end
720
+
721
+ class AddEnableRulesResponse
722
+ # @private
723
+ class Representation < Google::Apis::Core::JsonRepresentation
724
+ collection :added_values, as: 'addedValues'
725
+ property :parent, as: 'parent'
726
+ end
727
+ end
728
+
691
729
  class AdminQuotaPolicy
692
730
  # @private
693
731
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1705,6 +1743,20 @@ module Google
1705
1743
  end
1706
1744
  end
1707
1745
 
1746
+ class RemoveEnableRulesMetadata
1747
+ # @private
1748
+ class Representation < Google::Apis::Core::JsonRepresentation
1749
+ end
1750
+ end
1751
+
1752
+ class RemoveEnableRulesResponse
1753
+ # @private
1754
+ class Representation < Google::Apis::Core::JsonRepresentation
1755
+ property :parent, as: 'parent'
1756
+ collection :removed_values, as: 'removedValues'
1757
+ end
1758
+ end
1759
+
1708
1760
  class RubySettings
1709
1761
  # @private
1710
1762
  class Representation < Google::Apis::Core::JsonRepresentation
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.37.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-04-30 00:00:00.000000000 Z
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.37.0
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: []