google-iam-v2 0.2.0 → 0.3.1

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: 248f01be8988d929513f8f65649eec51ad0b1bf2f0c1ac01b22c0fba699bcb99
4
- data.tar.gz: c8f5fc37fbad07720f0c346817d91c3bdb13102a61a59ce8e646e5c2b8fb1bc7
3
+ metadata.gz: 971e8f656f1cc1db51ac01cb541c83f3107e7471aeaa9f5c0a14aa2af37fc830
4
+ data.tar.gz: b996863b1ab6add4a3aacbdacd7e092e456ae83e5ed4e1a516bf573435126e30
5
5
  SHA512:
6
- metadata.gz: d5ec858cfbab3a6f4cee3503b5dab026dfe79686153fdf1de62f1eeb7dd4236e2f8355f40af5f95c8c16f6c937ff5b1ad99d5d4ca7c5b3d10b888507ad9440fb
7
- data.tar.gz: b467614d3f14d083937af9edbe22759f847952c38c6e8d2593e9d30d5576cfb45fb26e5fc227aab736d0cea511abb0e0577de61a623befc60d47fe301d3365ea
6
+ metadata.gz: dfc4ed64275a322b5d7370577c7225a2b8a32d67ecc1be586eb7876ef5ab41856a98d94611dd7821a9316653d2467bb54721efc1c5b357add56222dd152559fb
7
+ data.tar.gz: 2ab20eacf19977bfd774eabeb8f03f7c93a8f12180ab4833812ac2f166d43e49d774e606525755d25450d4ae3667d5b0a06699cfbd04d673a54a93e011cd1758
data/README.md CHANGED
@@ -37,7 +37,7 @@ request = ::Google::Iam::V2::ListPoliciesRequest.new # (request fields as keywor
37
37
  response = client.list_policies request
38
38
  ```
39
39
 
40
- View the [Client Library Documentation](https://googleapis.dev/ruby/google-iam-v2/latest)
40
+ View the [Client Library Documentation](https://rubydoc.info/gems/google-iam-v2)
41
41
  for class and method documentation.
42
42
 
43
43
  See also the [Product Documentation](https://cloud.google.com/iam)
@@ -47,7 +47,7 @@ for general usage information.
47
47
 
48
48
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
49
  The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
50
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
53
 
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/iam/v2/deny.proto
3
4
 
@@ -5,16 +6,32 @@ require 'google/protobuf'
5
6
 
6
7
  require 'google/type/expr_pb'
7
8
 
8
- Google::Protobuf::DescriptorPool.generated_pool.build do
9
- add_file("google/iam/v2/deny.proto", :syntax => :proto3) do
10
- add_message "google.iam.v2.DenyRule" do
11
- repeated :denied_principals, :string, 1
12
- repeated :exception_principals, :string, 2
13
- repeated :denied_permissions, :string, 3
14
- repeated :exception_permissions, :string, 4
15
- optional :denial_condition, :message, 5, "google.type.Expr"
9
+
10
+ descriptor_data = "\n\x18google/iam/v2/deny.proto\x12\rgoogle.iam.v2\x1a\x16google/type/expr.proto\"\xab\x01\n\x08\x44\x65nyRule\x12\x19\n\x11\x64\x65nied_principals\x18\x01 \x03(\t\x12\x1c\n\x14\x65xception_principals\x18\x02 \x03(\t\x12\x1a\n\x12\x64\x65nied_permissions\x18\x03 \x03(\t\x12\x1d\n\x15\x65xception_permissions\x18\x04 \x03(\t\x12+\n\x10\x64\x65nial_condition\x18\x05 \x01(\x0b\x32\x11.google.type.ExprB{\n\x11\x63om.google.iam.v2B\rDenyRuleProtoP\x01Z)cloud.google.com/go/iam/apiv2/iampb;iampb\xaa\x02\x13Google.Cloud.Iam.V2\xca\x02\x13Google\\Cloud\\Iam\\V2b\x06proto3"
11
+
12
+ pool = Google::Protobuf::DescriptorPool.generated_pool
13
+
14
+ begin
15
+ pool.add_serialized_file(descriptor_data)
16
+ rescue TypeError => e
17
+ # Compatibility code: will be removed in the next major version.
18
+ require 'google/protobuf/descriptor_pb'
19
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
20
+ parsed.clear_dependency
21
+ serialized = parsed.class.encode(parsed)
22
+ file = pool.add_serialized_file(serialized)
23
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
24
+ imports = [
25
+ ["google.type.Expr", "google/type/expr.proto"],
26
+ ]
27
+ imports.each do |type_name, expected_filename|
28
+ import_file = pool.lookup(type_name).file_descriptor
29
+ if import_file.name != expected_filename
30
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
16
31
  end
17
32
  end
33
+ warn "Each proto file must use a consistent fully-qualified name."
34
+ warn "This will become an error in the next major version."
18
35
  end
19
36
 
20
37
  module Google
@@ -145,7 +145,7 @@ module Google
145
145
  credentials = @config.credentials
146
146
  # Use self-signed JWT if the endpoint is unchanged from default,
147
147
  # but only if the default endpoint does not have a region prefix.
148
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
148
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
149
149
  !@config.endpoint.split(".").first.include?("-")
150
150
  credentials ||= Credentials.default scope: @config.scope,
151
151
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -748,9 +748,9 @@ module Google
748
748
  # * (`String`) The path to a service account key file in JSON format
749
749
  # * (`Hash`) A service account key as a Hash
750
750
  # * (`Google::Auth::Credentials`) A googleauth credentials object
751
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
751
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
752
752
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
753
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
753
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
754
754
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
755
755
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
756
756
  # * (`nil`) indicating no credentials
@@ -792,7 +792,9 @@ module Google
792
792
  class Configuration
793
793
  extend ::Gapic::Config
794
794
 
795
- config_attr :endpoint, "iam.googleapis.com", ::String
795
+ DEFAULT_ENDPOINT = "iam.googleapis.com"
796
+
797
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
796
798
  config_attr :credentials, nil do |value|
797
799
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
798
800
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -619,9 +619,9 @@ module Google
619
619
  # * (`String`) The path to a service account key file in JSON format
620
620
  # * (`Hash`) A service account key as a Hash
621
621
  # * (`Google::Auth::Credentials`) A googleauth credentials object
622
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
622
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
623
623
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
624
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
624
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
625
625
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
626
626
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
627
627
  # * (`nil`) indicating no credentials
@@ -663,7 +663,9 @@ module Google
663
663
  class Configuration
664
664
  extend ::Gapic::Config
665
665
 
666
- config_attr :endpoint, "iam.googleapis.com", ::String
666
+ DEFAULT_ENDPOINT = "iam.googleapis.com"
667
+
668
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
667
669
  config_attr :credentials, nil do |value|
668
670
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
669
671
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -141,7 +141,7 @@ module Google
141
141
  credentials = @config.credentials
142
142
  # Use self-signed JWT if the endpoint is unchanged from default,
143
143
  # but only if the default endpoint does not have a region prefix.
144
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
144
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
145
145
  !@config.endpoint.split(".").first.include?("-")
146
146
  credentials ||= Credentials.default scope: @config.scope,
147
147
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -599,9 +599,9 @@ module Google
599
599
  # * (`String`) The path to a service account key file in JSON format
600
600
  # * (`Hash`) A service account key as a Hash
601
601
  # * (`Google::Auth::Credentials`) A googleauth credentials object
602
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
602
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
603
603
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
604
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
604
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
605
605
  # * (`nil`) indicating no credentials
606
606
  # @return [::Object]
607
607
  # @!attribute [rw] scope
@@ -634,7 +634,9 @@ module Google
634
634
  class Configuration
635
635
  extend ::Gapic::Config
636
636
 
637
- config_attr :endpoint, "iam.googleapis.com", ::String
637
+ DEFAULT_ENDPOINT = "iam.googleapis.com"
638
+
639
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
638
640
  config_attr :credentials, nil do |value|
639
641
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
640
642
  allowed.any? { |klass| klass === value }
@@ -410,9 +410,9 @@ module Google
410
410
  # * (`String`) The path to a service account key file in JSON format
411
411
  # * (`Hash`) A service account key as a Hash
412
412
  # * (`Google::Auth::Credentials`) A googleauth credentials object
413
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
413
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
414
414
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
415
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
415
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
416
416
  # * (`nil`) indicating no credentials
417
417
  # @return [::Object]
418
418
  # @!attribute [rw] scope
@@ -445,7 +445,9 @@ module Google
445
445
  class Configuration
446
446
  extend ::Gapic::Config
447
447
 
448
- config_attr :endpoint, "iam.googleapis.com", ::String
448
+ DEFAULT_ENDPOINT = "iam.googleapis.com"
449
+
450
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
449
451
  config_attr :credentials, nil do |value|
450
452
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
451
453
  allowed.any? { |klass| klass === value }
@@ -566,7 +568,7 @@ module Google
566
568
 
567
569
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
568
570
  query_string_params = if query_string_params.any?
569
- query_string_params.to_h { |p| p.split("=", 2) }
571
+ query_string_params.to_h { |p| p.split "=", 2 }
570
572
  else
571
573
  {}
572
574
  end
@@ -604,7 +606,7 @@ module Google
604
606
 
605
607
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
606
608
  query_string_params = if query_string_params.any?
607
- query_string_params.to_h { |p| p.split("=", 2) }
609
+ query_string_params.to_h { |p| p.split "=", 2 }
608
610
  else
609
611
  {}
610
612
  end
@@ -642,7 +644,7 @@ module Google
642
644
 
643
645
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
644
646
  query_string_params = if query_string_params.any?
645
- query_string_params.to_h { |p| p.split("=", 2) }
647
+ query_string_params.to_h { |p| p.split "=", 2 }
646
648
  else
647
649
  {}
648
650
  end
@@ -680,7 +682,7 @@ module Google
680
682
 
681
683
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
682
684
  query_string_params = if query_string_params.any?
683
- query_string_params.to_h { |p| p.split("=", 2) }
685
+ query_string_params.to_h { |p| p.split "=", 2 }
684
686
  else
685
687
  {}
686
688
  end
@@ -58,7 +58,7 @@ module Google
58
58
 
59
59
  verb, uri, query_string_params, body = ServiceStub.transcode_list_policies_request request_pb
60
60
  query_string_params = if query_string_params.any?
61
- query_string_params.to_h { |p| p.split("=", 2) }
61
+ query_string_params.to_h { |p| p.split "=", 2 }
62
62
  else
63
63
  {}
64
64
  end
@@ -96,7 +96,7 @@ module Google
96
96
 
97
97
  verb, uri, query_string_params, body = ServiceStub.transcode_get_policy_request request_pb
98
98
  query_string_params = if query_string_params.any?
99
- query_string_params.to_h { |p| p.split("=", 2) }
99
+ query_string_params.to_h { |p| p.split "=", 2 }
100
100
  else
101
101
  {}
102
102
  end
@@ -134,7 +134,7 @@ module Google
134
134
 
135
135
  verb, uri, query_string_params, body = ServiceStub.transcode_create_policy_request request_pb
136
136
  query_string_params = if query_string_params.any?
137
- query_string_params.to_h { |p| p.split("=", 2) }
137
+ query_string_params.to_h { |p| p.split "=", 2 }
138
138
  else
139
139
  {}
140
140
  end
@@ -172,7 +172,7 @@ module Google
172
172
 
173
173
  verb, uri, query_string_params, body = ServiceStub.transcode_update_policy_request request_pb
174
174
  query_string_params = if query_string_params.any?
175
- query_string_params.to_h { |p| p.split("=", 2) }
175
+ query_string_params.to_h { |p| p.split "=", 2 }
176
176
  else
177
177
  {}
178
178
  end
@@ -210,7 +210,7 @@ module Google
210
210
 
211
211
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_policy_request request_pb
212
212
  query_string_params = if query_string_params.any?
213
- query_string_params.to_h { |p| p.split("=", 2) }
213
+ query_string_params.to_h { |p| p.split "=", 2 }
214
214
  else
215
215
  {}
216
216
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/iam/v2/policy.proto
3
4
 
@@ -10,55 +11,33 @@ require 'google/iam/v2/deny_pb'
10
11
  require 'google/longrunning/operations_pb'
11
12
  require 'google/protobuf/timestamp_pb'
12
13
 
13
- Google::Protobuf::DescriptorPool.generated_pool.build do
14
- add_file("google/iam/v2/policy.proto", :syntax => :proto3) do
15
- add_message "google.iam.v2.Policy" do
16
- optional :name, :string, 1
17
- optional :uid, :string, 2
18
- optional :kind, :string, 3
19
- optional :display_name, :string, 4
20
- map :annotations, :string, :string, 5
21
- optional :etag, :string, 6
22
- optional :create_time, :message, 7, "google.protobuf.Timestamp"
23
- optional :update_time, :message, 8, "google.protobuf.Timestamp"
24
- optional :delete_time, :message, 9, "google.protobuf.Timestamp"
25
- repeated :rules, :message, 10, "google.iam.v2.PolicyRule"
26
- optional :managing_authority, :string, 11
27
- end
28
- add_message "google.iam.v2.PolicyRule" do
29
- optional :description, :string, 1
30
- oneof :kind do
31
- optional :deny_rule, :message, 2, "google.iam.v2.DenyRule"
32
- end
33
- end
34
- add_message "google.iam.v2.ListPoliciesRequest" do
35
- optional :parent, :string, 1
36
- optional :page_size, :int32, 2
37
- optional :page_token, :string, 3
38
- end
39
- add_message "google.iam.v2.ListPoliciesResponse" do
40
- repeated :policies, :message, 1, "google.iam.v2.Policy"
41
- optional :next_page_token, :string, 2
42
- end
43
- add_message "google.iam.v2.GetPolicyRequest" do
44
- optional :name, :string, 1
45
- end
46
- add_message "google.iam.v2.CreatePolicyRequest" do
47
- optional :parent, :string, 1
48
- optional :policy, :message, 2, "google.iam.v2.Policy"
49
- optional :policy_id, :string, 3
50
- end
51
- add_message "google.iam.v2.UpdatePolicyRequest" do
52
- optional :policy, :message, 1, "google.iam.v2.Policy"
53
- end
54
- add_message "google.iam.v2.DeletePolicyRequest" do
55
- optional :name, :string, 1
56
- optional :etag, :string, 2
57
- end
58
- add_message "google.iam.v2.PolicyOperationMetadata" do
59
- optional :create_time, :message, 1, "google.protobuf.Timestamp"
14
+
15
+ descriptor_data = "\n\x1agoogle/iam/v2/policy.proto\x12\rgoogle.iam.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x18google/iam/v2/deny.proto\x1a#google/longrunning/operations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc2\x03\n\x06Policy\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x05\x12\x11\n\x04kind\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x04 \x01(\t\x12;\n\x0b\x61nnotations\x18\x05 \x03(\x0b\x32&.google.iam.v2.Policy.AnnotationsEntry\x12\x0c\n\x04\x65tag\x18\x06 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x64\x65lete_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12(\n\x05rules\x18\n \x03(\x0b\x32\x19.google.iam.v2.PolicyRule\x12\x1f\n\x12managing_authority\x18\x0b \x01(\tB\x03\xe0\x41\x05\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"W\n\nPolicyRule\x12,\n\tdeny_rule\x18\x02 \x01(\x0b\x32\x17.google.iam.v2.DenyRuleH\x00\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\tB\x06\n\x04kind\"Q\n\x13ListPoliciesRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"X\n\x14ListPoliciesResponse\x12\'\n\x08policies\x18\x01 \x03(\x0b\x32\x15.google.iam.v2.Policy\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"%\n\x10GetPolicyRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"i\n\x13\x43reatePolicyRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12*\n\x06policy\x18\x02 \x01(\x0b\x32\x15.google.iam.v2.PolicyB\x03\xe0\x41\x02\x12\x11\n\tpolicy_id\x18\x03 \x01(\t\"A\n\x13UpdatePolicyRequest\x12*\n\x06policy\x18\x01 \x01(\x0b\x32\x15.google.iam.v2.PolicyB\x03\xe0\x41\x02\";\n\x13\x44\x65letePolicyRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\x04\x65tag\x18\x02 \x01(\tB\x03\xe0\x41\x01\"J\n\x17PolicyOperationMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp2\xd0\x06\n\x08Policies\x12\x83\x01\n\x0cListPolicies\x12\".google.iam.v2.ListPoliciesRequest\x1a#.google.iam.v2.ListPoliciesResponse\"*\x82\xd3\xe4\x93\x02\x1b\x12\x19/v2/{parent=policies/*/*}\xda\x41\x06parent\x12m\n\tGetPolicy\x12\x1f.google.iam.v2.GetPolicyRequest\x1a\x15.google.iam.v2.Policy\"(\x82\xd3\xe4\x93\x02\x1b\x12\x19/v2/{name=policies/*/*/*}\xda\x41\x04name\x12\xba\x01\n\x0c\x43reatePolicy\x12\".google.iam.v2.CreatePolicyRequest\x1a\x1d.google.longrunning.Operation\"g\x82\xd3\xe4\x93\x02#\"\x19/v2/{parent=policies/*/*}:\x06policy\xda\x41\x17parent,policy,policy_id\xca\x41!\n\x06Policy\x12\x17PolicyOperationMetadata\x12\xa7\x01\n\x0cUpdatePolicy\x12\".google.iam.v2.UpdatePolicyRequest\x1a\x1d.google.longrunning.Operation\"T\x82\xd3\xe4\x93\x02*\x1a /v2/{policy.name=policies/*/*/*}:\x06policy\xca\x41!\n\x06Policy\x12\x17PolicyOperationMetadata\x12\x9f\x01\n\x0c\x44\x65letePolicy\x12\".google.iam.v2.DeletePolicyRequest\x1a\x1d.google.longrunning.Operation\"L\x82\xd3\xe4\x93\x02\x1b*\x19/v2/{name=policies/*/*/*}\xda\x41\x04name\xca\x41!\n\x06Policy\x12\x17PolicyOperationMetadata\x1a\x46\xca\x41\x12iam.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformBy\n\x11\x63om.google.iam.v2B\x0bPolicyProtoP\x01Z)cloud.google.com/go/iam/apiv2/iampb;iampb\xaa\x02\x13Google.Cloud.Iam.V2\xca\x02\x13Google\\Cloud\\Iam\\V2b\x06proto3"
16
+
17
+ pool = Google::Protobuf::DescriptorPool.generated_pool
18
+
19
+ begin
20
+ pool.add_serialized_file(descriptor_data)
21
+ rescue TypeError => e
22
+ # Compatibility code: will be removed in the next major version.
23
+ require 'google/protobuf/descriptor_pb'
24
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
25
+ parsed.clear_dependency
26
+ serialized = parsed.class.encode(parsed)
27
+ file = pool.add_serialized_file(serialized)
28
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
29
+ imports = [
30
+ ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
31
+ ["google.iam.v2.DenyRule", "google/iam/v2/deny.proto"],
32
+ ]
33
+ imports.each do |type_name, expected_filename|
34
+ import_file = pool.lookup(type_name).file_descriptor
35
+ if import_file.name != expected_filename
36
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
60
37
  end
61
38
  end
39
+ warn "Each proto file must use a consistent fully-qualified name."
40
+ warn "This will become an error in the next major version."
62
41
  end
63
42
 
64
43
  module Google
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Iam
22
22
  module V2
23
- VERSION = "0.2.0"
23
+ VERSION = "0.3.1"
24
24
  end
25
25
  end
26
26
  end
@@ -35,7 +35,9 @@ module Google
35
35
  # Details about how and where to publish client libraries.
36
36
  # @!attribute [rw] version
37
37
  # @return [::String]
38
- # Version of the API to apply these settings to.
38
+ # Version of the API to apply these settings to. This is the full protobuf
39
+ # package for the API, ending in the version element.
40
+ # Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
39
41
  # @!attribute [rw] launch_stage
40
42
  # @return [::Google::Api::LaunchStage]
41
43
  # Launch stage of this version of the API.
@@ -81,7 +83,7 @@ module Google
81
83
  # long-running operation pattern.
82
84
  # @!attribute [rw] new_issue_uri
83
85
  # @return [::String]
84
- # Link to a place that API users can report issues. Example:
86
+ # Link to a *public* URI where users can report issues. Example:
85
87
  # https://issuetracker.google.com/issues/new?component=190865&template=1161103
86
88
  # @!attribute [rw] documentation_uri
87
89
  # @return [::String]
@@ -111,6 +113,10 @@ module Google
111
113
  # Client library settings. If the same version string appears multiple
112
114
  # times in this list, then the last one wins. Settings from earlier
113
115
  # settings with the same version string are discarded.
116
+ # @!attribute [rw] proto_reference_documentation_uri
117
+ # @return [::String]
118
+ # Optional link to proto reference documentation. Example:
119
+ # https://cloud.google.com/pubsub/lite/docs/reference/rpc
114
120
  class Publishing
115
121
  include ::Google::Protobuf::MessageExts
116
122
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -203,9 +209,57 @@ module Google
203
209
  # @!attribute [rw] common
204
210
  # @return [::Google::Api::CommonLanguageSettings]
205
211
  # Some settings.
212
+ # @!attribute [rw] renamed_services
213
+ # @return [::Google::Protobuf::Map{::String => ::String}]
214
+ # Map from original service names to renamed versions.
215
+ # This is used when the default generated types
216
+ # would cause a naming conflict. (Neither name is
217
+ # fully-qualified.)
218
+ # Example: Subscriber to SubscriberServiceApi.
219
+ # @!attribute [rw] renamed_resources
220
+ # @return [::Google::Protobuf::Map{::String => ::String}]
221
+ # Map from full resource types to the effective short name
222
+ # for the resource. This is used when otherwise resource
223
+ # named from different services would cause naming collisions.
224
+ # Example entry:
225
+ # "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
226
+ # @!attribute [rw] ignored_resources
227
+ # @return [::Array<::String>]
228
+ # List of full resource types to ignore during generation.
229
+ # This is typically used for API-specific Location resources,
230
+ # which should be handled by the generator as if they were actually
231
+ # the common Location resources.
232
+ # Example entry: "documentai.googleapis.com/Location"
233
+ # @!attribute [rw] forced_namespace_aliases
234
+ # @return [::Array<::String>]
235
+ # Namespaces which must be aliased in snippets due to
236
+ # a known (but non-generator-predictable) naming collision
237
+ # @!attribute [rw] handwritten_signatures
238
+ # @return [::Array<::String>]
239
+ # Method signatures (in the form "service.method(signature)")
240
+ # which are provided separately, so shouldn't be generated.
241
+ # Snippets *calling* these methods are still generated, however.
206
242
  class DotnetSettings
207
243
  include ::Google::Protobuf::MessageExts
208
244
  extend ::Google::Protobuf::MessageExts::ClassMethods
245
+
246
+ # @!attribute [rw] key
247
+ # @return [::String]
248
+ # @!attribute [rw] value
249
+ # @return [::String]
250
+ class RenamedServicesEntry
251
+ include ::Google::Protobuf::MessageExts
252
+ extend ::Google::Protobuf::MessageExts::ClassMethods
253
+ end
254
+
255
+ # @!attribute [rw] key
256
+ # @return [::String]
257
+ # @!attribute [rw] value
258
+ # @return [::String]
259
+ class RenamedResourcesEntry
260
+ include ::Google::Protobuf::MessageExts
261
+ extend ::Google::Protobuf::MessageExts::ClassMethods
262
+ end
209
263
  end
210
264
 
211
265
  # Settings for Ruby client libraries.
@@ -240,8 +294,8 @@ module Google
240
294
  # Example of a YAML configuration::
241
295
  #
242
296
  # publishing:
243
- # method_behavior:
244
- # - selector: CreateAdDomain
297
+ # method_settings:
298
+ # - selector: google.cloud.speech.v2.Speech.BatchRecognize
245
299
  # long_running:
246
300
  # initial_poll_delay:
247
301
  # seconds: 60 # 1 minute
@@ -299,6 +353,15 @@ module Google
299
353
 
300
354
  # Street View Org.
301
355
  STREET_VIEW = 4
356
+
357
+ # Shopping Org.
358
+ SHOPPING = 5
359
+
360
+ # Geo Org.
361
+ GEO = 6
362
+
363
+ # Generative AI - https://developers.generativeai.google
364
+ GENERATIVE_AI = 7
302
365
  end
303
366
 
304
367
  # To where should client libraries be published?
@@ -43,8 +43,12 @@ module Google
43
43
  # if (any.is(Foo.class)) {
44
44
  # foo = any.unpack(Foo.class);
45
45
  # }
46
+ # // or ...
47
+ # if (any.isSameTypeAs(Foo.getDefaultInstance())) {
48
+ # foo = any.unpack(Foo.getDefaultInstance());
49
+ # }
46
50
  #
47
- # Example 3: Pack and unpack a message in Python.
51
+ # Example 3: Pack and unpack a message in Python.
48
52
  #
49
53
  # foo = Foo(...)
50
54
  # any = Any()
@@ -54,7 +58,7 @@ module Google
54
58
  # any.Unpack(foo)
55
59
  # ...
56
60
  #
57
- # Example 4: Pack and unpack a message in Go
61
+ # Example 4: Pack and unpack a message in Go
58
62
  #
59
63
  # foo := &pb.Foo{...}
60
64
  # any, err := anypb.New(foo)
@@ -73,9 +77,8 @@ module Google
73
77
  # in the type URL, for example "foo.bar.com/x/y.z" will yield type
74
78
  # name "y.z".
75
79
  #
76
- #
77
80
  # JSON
78
- #
81
+ # ====
79
82
  # The JSON representation of an `Any` value uses the regular
80
83
  # representation of the deserialized, embedded message, with an
81
84
  # additional field `@type` which contains the type URL. Example:
@@ -69,7 +69,6 @@ module Google
69
69
  # Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
70
70
  # .setNanos((int) ((millis % 1000) * 1000000)).build();
71
71
  #
72
- #
73
72
  # Example 5: Compute Timestamp from Java `Instant.now()`.
74
73
  #
75
74
  # Instant now = Instant.now();
@@ -78,7 +77,6 @@ module Google
78
77
  # Timestamp.newBuilder().setSeconds(now.getEpochSecond())
79
78
  # .setNanos(now.getNano()).build();
80
79
  #
81
- #
82
80
  # Example 6: Compute Timestamp from current time in Python.
83
81
  #
84
82
  # timestamp = Timestamp()
@@ -108,7 +106,7 @@ module Google
108
106
  # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
109
107
  # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
110
108
  # the Joda Time's [`ISODateTimeFormat.dateTime()`](
111
- # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
109
+ # http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
112
110
  # ) to obtain a formatter capable of generating timestamps in this format.
113
111
  # @!attribute [rw] seconds
114
112
  # @return [::Integer]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-iam-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.1
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-03-08 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.18.0
19
+ version: 0.19.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.18.0
29
+ version: 0.19.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a