google-apis-serviceconsumermanagement_v1beta1 0.62.0 → 0.64.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: 746cb723b1879f8e8c156bf5a000b49405e4515751774a06db8d8c47615db596
|
|
4
|
+
data.tar.gz: a96f9910b75b753a6b53a472cae9a8f228f353686128776458a55436939720fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71eed350c4eb036a94fe6b89eca8951f679da963b9ede6ce02cf020e7c64df15b26f1e37cb5b0e327431adc619757bf09bfe098e7ea1c64dfeb45c7578fe0c6e
|
|
7
|
+
data.tar.gz: fe6da3229831720e9f952cb5e4f0255cd56b99a69f27a8928e3b2ed463bf6103c090a1e3b34e04ac87f519d26f356067b9f34b1f77e136b6723011180ea63e71
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.64.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260109
|
|
6
|
+
|
|
7
|
+
### v0.63.0 (2025-10-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251023
|
|
10
|
+
|
|
3
11
|
### v0.62.0 (2025-09-28)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250919
|
|
@@ -859,9 +859,9 @@ module Google
|
|
|
859
859
|
class Control
|
|
860
860
|
include Google::Apis::Core::Hashable
|
|
861
861
|
|
|
862
|
-
# The service controller environment to use. If empty, no control plane
|
|
863
|
-
# like quota and billing) will be enabled. The recommended value for most
|
|
864
|
-
# services is servicecontrol.googleapis.com
|
|
862
|
+
# The service controller environment to use. If empty, no control plane features
|
|
863
|
+
# (like quota and billing) will be enabled. The recommended value for most
|
|
864
|
+
# services is servicecontrol.googleapis.com.
|
|
865
865
|
# Corresponds to the JSON property `environment`
|
|
866
866
|
# @return [String]
|
|
867
867
|
attr_accessor :environment
|
|
@@ -4525,6 +4525,15 @@ module Google
|
|
|
4525
4525
|
# @return [String]
|
|
4526
4526
|
attr_accessor :name
|
|
4527
4527
|
|
|
4528
|
+
# The project-level IAM role defined in the service agent's grant configuration.
|
|
4529
|
+
# This is the standard role intended for this service agent. This field is
|
|
4530
|
+
# populated regardless of the `skip_role_attach` option in the request. If `
|
|
4531
|
+
# skip_role_attach` is true, the caller can use this value to know which role
|
|
4532
|
+
# they are responsible for granting.
|
|
4533
|
+
# Corresponds to the JSON property `projectRole`
|
|
4534
|
+
# @return [String]
|
|
4535
|
+
attr_accessor :project_role
|
|
4536
|
+
|
|
4528
4537
|
# The P4 service identity configuration tag. This must be defined in
|
|
4529
4538
|
# activation_grants. If not specified when creating the account, the tag is set
|
|
4530
4539
|
# to "default".
|
|
@@ -4545,6 +4554,7 @@ module Google
|
|
|
4545
4554
|
def update!(**args)
|
|
4546
4555
|
@email = args[:email] if args.key?(:email)
|
|
4547
4556
|
@name = args[:name] if args.key?(:name)
|
|
4557
|
+
@project_role = args[:project_role] if args.key?(:project_role)
|
|
4548
4558
|
@tag = args[:tag] if args.key?(:tag)
|
|
4549
4559
|
@unique_id = args[:unique_id] if args.key?(:unique_id)
|
|
4550
4560
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ServiceconsumermanagementV1beta1
|
|
18
18
|
# Version of the google-apis-serviceconsumermanagement_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.64.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260109"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1684,6 +1684,7 @@ module Google
|
|
|
1684
1684
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1685
1685
|
property :email, as: 'email'
|
|
1686
1686
|
property :name, as: 'name'
|
|
1687
|
+
property :project_role, as: 'projectRole'
|
|
1687
1688
|
property :tag, as: 'tag'
|
|
1688
1689
|
property :unique_id, as: 'uniqueId'
|
|
1689
1690
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-serviceconsumermanagement_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.64.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.64.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|