google-cloud-access_approval-v1 0.8.0 → 0.9.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: cfc60a2cae73bc5648ea24db546426af743621c83a559b5d33dc7328aeaede56
4
- data.tar.gz: cf32483f36e2c49eda8c40ab886d970577e5eda40880cff0bb6921857c8907d3
3
+ metadata.gz: 7b21f1c38cdcae3bffe301c7f72ccfb4df27edd894a530c33133558f1b783c6f
4
+ data.tar.gz: 6dd8378f40967a20bf9a2267c8e238060579d856c7ee96eb64e43cb6e267cea2
5
5
  SHA512:
6
- metadata.gz: b82db1e77a399cce4c0edde791aee6ca53f2ba75ec2f7a5626945e1c1152e118986182402e382612b6752499058e6f9462343a1d2fc8a76b4b04f45c0a780dc8
7
- data.tar.gz: a1a5affe5e8b34c0f5e37652a8424671660cce7bf2d759cc7b9d68703fc6a092630690c9a6dce5e4e9b6592894c8b86946633b77c725cdfe1ae9cb21170b783b
6
+ metadata.gz: b9b7d888e59f9f2c812033d1ebd13d13c534741ff0b982b5991f129616ad32dab9b6a14b62f6cfcaf4aa8d08fe508f119138394e291f83fa84b2318d8f13681f
7
+ data.tar.gz: f84b87a8b4732f097509f3736956f5da622a7c99a66d861e9898328ed7262b517658bfcc571d7b946d6f6fa7c91fb2c535ae1661c862068233831a9a18b5841e
data/README.md CHANGED
@@ -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
 
@@ -180,7 +180,7 @@ module Google
180
180
  credentials = @config.credentials
181
181
  # Use self-signed JWT if the endpoint is unchanged from default,
182
182
  # but only if the default endpoint does not have a region prefix.
183
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
183
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
184
184
  !@config.endpoint.split(".").first.include?("-")
185
185
  credentials ||= Credentials.default scope: @config.scope,
186
186
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -1071,9 +1071,9 @@ module Google
1071
1071
  # * (`String`) The path to a service account key file in JSON format
1072
1072
  # * (`Hash`) A service account key as a Hash
1073
1073
  # * (`Google::Auth::Credentials`) A googleauth credentials object
1074
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
1074
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
1075
1075
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1076
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
1076
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1077
1077
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1078
1078
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1079
1079
  # * (`nil`) indicating no credentials
@@ -1115,7 +1115,9 @@ module Google
1115
1115
  class Configuration
1116
1116
  extend ::Gapic::Config
1117
1117
 
1118
- config_attr :endpoint, "accessapproval.googleapis.com", ::String
1118
+ DEFAULT_ENDPOINT = "accessapproval.googleapis.com"
1119
+
1120
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
1119
1121
  config_attr :credentials, nil do |value|
1120
1122
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1121
1123
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -176,7 +176,7 @@ module Google
176
176
  credentials = @config.credentials
177
177
  # Use self-signed JWT if the endpoint is unchanged from default,
178
178
  # but only if the default endpoint does not have a region prefix.
179
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
179
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
180
180
  !@config.endpoint.split(".").first.include?("-")
181
181
  credentials ||= Credentials.default scope: @config.scope,
182
182
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -851,9 +851,9 @@ module Google
851
851
  # * (`String`) The path to a service account key file in JSON format
852
852
  # * (`Hash`) A service account key as a Hash
853
853
  # * (`Google::Auth::Credentials`) A googleauth credentials object
854
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
854
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
855
855
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
856
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
856
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
857
857
  # * (`nil`) indicating no credentials
858
858
  # @return [::Object]
859
859
  # @!attribute [rw] scope
@@ -886,7 +886,9 @@ module Google
886
886
  class Configuration
887
887
  extend ::Gapic::Config
888
888
 
889
- config_attr :endpoint, "accessapproval.googleapis.com", ::String
889
+ DEFAULT_ENDPOINT = "accessapproval.googleapis.com"
890
+
891
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
890
892
  config_attr :credentials, nil do |value|
891
893
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
892
894
  allowed.any? { |klass| klass === value }
@@ -59,7 +59,7 @@ module Google
59
59
 
60
60
  verb, uri, query_string_params, body = ServiceStub.transcode_list_approval_requests_request request_pb
61
61
  query_string_params = if query_string_params.any?
62
- query_string_params.to_h { |p| p.split("=", 2) }
62
+ query_string_params.to_h { |p| p.split "=", 2 }
63
63
  else
64
64
  {}
65
65
  end
@@ -97,7 +97,7 @@ module Google
97
97
 
98
98
  verb, uri, query_string_params, body = ServiceStub.transcode_get_approval_request_request request_pb
99
99
  query_string_params = if query_string_params.any?
100
- query_string_params.to_h { |p| p.split("=", 2) }
100
+ query_string_params.to_h { |p| p.split "=", 2 }
101
101
  else
102
102
  {}
103
103
  end
@@ -135,7 +135,7 @@ module Google
135
135
 
136
136
  verb, uri, query_string_params, body = ServiceStub.transcode_approve_approval_request_request request_pb
137
137
  query_string_params = if query_string_params.any?
138
- query_string_params.to_h { |p| p.split("=", 2) }
138
+ query_string_params.to_h { |p| p.split "=", 2 }
139
139
  else
140
140
  {}
141
141
  end
@@ -173,7 +173,7 @@ module Google
173
173
 
174
174
  verb, uri, query_string_params, body = ServiceStub.transcode_dismiss_approval_request_request request_pb
175
175
  query_string_params = if query_string_params.any?
176
- query_string_params.to_h { |p| p.split("=", 2) }
176
+ query_string_params.to_h { |p| p.split "=", 2 }
177
177
  else
178
178
  {}
179
179
  end
@@ -211,7 +211,7 @@ module Google
211
211
 
212
212
  verb, uri, query_string_params, body = ServiceStub.transcode_invalidate_approval_request_request request_pb
213
213
  query_string_params = if query_string_params.any?
214
- query_string_params.to_h { |p| p.split("=", 2) }
214
+ query_string_params.to_h { |p| p.split "=", 2 }
215
215
  else
216
216
  {}
217
217
  end
@@ -249,7 +249,7 @@ module Google
249
249
 
250
250
  verb, uri, query_string_params, body = ServiceStub.transcode_get_access_approval_settings_request request_pb
251
251
  query_string_params = if query_string_params.any?
252
- query_string_params.to_h { |p| p.split("=", 2) }
252
+ query_string_params.to_h { |p| p.split "=", 2 }
253
253
  else
254
254
  {}
255
255
  end
@@ -287,7 +287,7 @@ module Google
287
287
 
288
288
  verb, uri, query_string_params, body = ServiceStub.transcode_update_access_approval_settings_request request_pb
289
289
  query_string_params = if query_string_params.any?
290
- query_string_params.to_h { |p| p.split("=", 2) }
290
+ query_string_params.to_h { |p| p.split "=", 2 }
291
291
  else
292
292
  {}
293
293
  end
@@ -325,7 +325,7 @@ module Google
325
325
 
326
326
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_access_approval_settings_request request_pb
327
327
  query_string_params = if query_string_params.any?
328
- query_string_params.to_h { |p| p.split("=", 2) }
328
+ query_string_params.to_h { |p| p.split "=", 2 }
329
329
  else
330
330
  {}
331
331
  end
@@ -363,7 +363,7 @@ module Google
363
363
 
364
364
  verb, uri, query_string_params, body = ServiceStub.transcode_get_access_approval_service_account_request request_pb
365
365
  query_string_params = if query_string_params.any?
366
- query_string_params.to_h { |p| p.split("=", 2) }
366
+ query_string_params.to_h { |p| p.split "=", 2 }
367
367
  else
368
368
  {}
369
369
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module AccessApproval
23
23
  module V1
24
- VERSION = "0.8.0"
24
+ VERSION = "0.9.0"
25
25
  end
26
26
  end
27
27
  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/cloud/accessapproval/v1/accessapproval.proto
3
4
 
@@ -11,116 +12,33 @@ require 'google/protobuf/empty_pb'
11
12
  require 'google/protobuf/field_mask_pb'
12
13
  require 'google/protobuf/timestamp_pb'
13
14
 
14
- Google::Protobuf::DescriptorPool.generated_pool.build do
15
- add_file("google/cloud/accessapproval/v1/accessapproval.proto", :syntax => :proto3) do
16
- add_message "google.cloud.accessapproval.v1.AccessLocations" do
17
- optional :principal_office_country, :string, 1
18
- optional :principal_physical_location_country, :string, 2
19
- end
20
- add_message "google.cloud.accessapproval.v1.AccessReason" do
21
- optional :type, :enum, 1, "google.cloud.accessapproval.v1.AccessReason.Type"
22
- optional :detail, :string, 2
23
- end
24
- add_enum "google.cloud.accessapproval.v1.AccessReason.Type" do
25
- value :TYPE_UNSPECIFIED, 0
26
- value :CUSTOMER_INITIATED_SUPPORT, 1
27
- value :GOOGLE_INITIATED_SERVICE, 2
28
- value :GOOGLE_INITIATED_REVIEW, 3
29
- value :THIRD_PARTY_DATA_REQUEST, 4
30
- value :GOOGLE_RESPONSE_TO_PRODUCTION_ALERT, 5
31
- end
32
- add_message "google.cloud.accessapproval.v1.SignatureInfo" do
33
- optional :signature, :bytes, 1
34
- oneof :verification_info do
35
- optional :google_public_key_pem, :string, 2
36
- optional :customer_kms_key_version, :string, 3
37
- end
38
- end
39
- add_message "google.cloud.accessapproval.v1.ApproveDecision" do
40
- optional :approve_time, :message, 1, "google.protobuf.Timestamp"
41
- optional :expire_time, :message, 2, "google.protobuf.Timestamp"
42
- optional :invalidate_time, :message, 3, "google.protobuf.Timestamp"
43
- optional :signature_info, :message, 4, "google.cloud.accessapproval.v1.SignatureInfo"
44
- optional :auto_approved, :bool, 5
45
- end
46
- add_message "google.cloud.accessapproval.v1.DismissDecision" do
47
- optional :dismiss_time, :message, 1, "google.protobuf.Timestamp"
48
- optional :implicit, :bool, 2
49
- end
50
- add_message "google.cloud.accessapproval.v1.ResourceProperties" do
51
- optional :excludes_descendants, :bool, 1
52
- end
53
- add_message "google.cloud.accessapproval.v1.ApprovalRequest" do
54
- optional :name, :string, 1
55
- optional :requested_resource_name, :string, 2
56
- optional :requested_resource_properties, :message, 9, "google.cloud.accessapproval.v1.ResourceProperties"
57
- optional :requested_reason, :message, 3, "google.cloud.accessapproval.v1.AccessReason"
58
- optional :requested_locations, :message, 4, "google.cloud.accessapproval.v1.AccessLocations"
59
- optional :request_time, :message, 5, "google.protobuf.Timestamp"
60
- optional :requested_expiration, :message, 6, "google.protobuf.Timestamp"
61
- oneof :decision do
62
- optional :approve, :message, 7, "google.cloud.accessapproval.v1.ApproveDecision"
63
- optional :dismiss, :message, 8, "google.cloud.accessapproval.v1.DismissDecision"
64
- end
65
- end
66
- add_message "google.cloud.accessapproval.v1.EnrolledService" do
67
- optional :cloud_product, :string, 1
68
- optional :enrollment_level, :enum, 2, "google.cloud.accessapproval.v1.EnrollmentLevel"
69
- end
70
- add_message "google.cloud.accessapproval.v1.AccessApprovalSettings" do
71
- optional :name, :string, 1
72
- repeated :notification_emails, :string, 2
73
- repeated :enrolled_services, :message, 3, "google.cloud.accessapproval.v1.EnrolledService"
74
- optional :enrolled_ancestor, :bool, 4
75
- optional :active_key_version, :string, 6
76
- optional :ancestor_has_active_key_version, :bool, 7
77
- optional :invalid_key_version, :bool, 8
78
- end
79
- add_message "google.cloud.accessapproval.v1.AccessApprovalServiceAccount" do
80
- optional :name, :string, 1
81
- optional :account_email, :string, 2
82
- end
83
- add_message "google.cloud.accessapproval.v1.ListApprovalRequestsMessage" do
84
- optional :parent, :string, 1
85
- optional :filter, :string, 2
86
- optional :page_size, :int32, 3
87
- optional :page_token, :string, 4
88
- end
89
- add_message "google.cloud.accessapproval.v1.ListApprovalRequestsResponse" do
90
- repeated :approval_requests, :message, 1, "google.cloud.accessapproval.v1.ApprovalRequest"
91
- optional :next_page_token, :string, 2
92
- end
93
- add_message "google.cloud.accessapproval.v1.GetApprovalRequestMessage" do
94
- optional :name, :string, 1
95
- end
96
- add_message "google.cloud.accessapproval.v1.ApproveApprovalRequestMessage" do
97
- optional :name, :string, 1
98
- optional :expire_time, :message, 2, "google.protobuf.Timestamp"
99
- end
100
- add_message "google.cloud.accessapproval.v1.DismissApprovalRequestMessage" do
101
- optional :name, :string, 1
102
- end
103
- add_message "google.cloud.accessapproval.v1.InvalidateApprovalRequestMessage" do
104
- optional :name, :string, 1
105
- end
106
- add_message "google.cloud.accessapproval.v1.GetAccessApprovalSettingsMessage" do
107
- optional :name, :string, 1
108
- end
109
- add_message "google.cloud.accessapproval.v1.UpdateAccessApprovalSettingsMessage" do
110
- optional :settings, :message, 1, "google.cloud.accessapproval.v1.AccessApprovalSettings"
111
- optional :update_mask, :message, 2, "google.protobuf.FieldMask"
112
- end
113
- add_message "google.cloud.accessapproval.v1.DeleteAccessApprovalSettingsMessage" do
114
- optional :name, :string, 1
115
- end
116
- add_message "google.cloud.accessapproval.v1.GetAccessApprovalServiceAccountMessage" do
117
- optional :name, :string, 1
118
- end
119
- add_enum "google.cloud.accessapproval.v1.EnrollmentLevel" do
120
- value :ENROLLMENT_LEVEL_UNSPECIFIED, 0
121
- value :BLOCK_ALL, 1
15
+
16
+ descriptor_data = "\n3google/cloud/accessapproval/v1/accessapproval.proto\x12\x1egoogle.cloud.accessapproval.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"`\n\x0f\x41\x63\x63\x65ssLocations\x12 \n\x18principal_office_country\x18\x01 \x01(\t\x12+\n#principal_physical_location_country\x18\x02 \x01(\t\"\xa0\x02\n\x0c\x41\x63\x63\x65ssReason\x12?\n\x04type\x18\x01 \x01(\x0e\x32\x31.google.cloud.accessapproval.v1.AccessReason.Type\x12\x0e\n\x06\x64\x65tail\x18\x02 \x01(\t\"\xbe\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1a\x43USTOMER_INITIATED_SUPPORT\x10\x01\x12\x1c\n\x18GOOGLE_INITIATED_SERVICE\x10\x02\x12\x1b\n\x17GOOGLE_INITIATED_REVIEW\x10\x03\x12\x1c\n\x18THIRD_PARTY_DATA_REQUEST\x10\x04\x12\'\n#GOOGLE_RESPONSE_TO_PRODUCTION_ALERT\x10\x05\"|\n\rSignatureInfo\x12\x11\n\tsignature\x18\x01 \x01(\x0c\x12\x1f\n\x15google_public_key_pem\x18\x02 \x01(\tH\x00\x12\"\n\x18\x63ustomer_kms_key_version\x18\x03 \x01(\tH\x00\x42\x13\n\x11verification_info\"\x87\x02\n\x0f\x41pproveDecision\x12\x30\n\x0c\x61pprove_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0b\x65xpire_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0finvalidate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x45\n\x0esignature_info\x18\x04 \x01(\x0b\x32-.google.cloud.accessapproval.v1.SignatureInfo\x12\x15\n\rauto_approved\x18\x05 \x01(\x08\"U\n\x0f\x44ismissDecision\x12\x30\n\x0c\x64ismiss_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x10\n\x08implicit\x18\x02 \x01(\x08\"2\n\x12ResourceProperties\x12\x1c\n\x14\x65xcludes_descendants\x18\x01 \x01(\x08\"\x97\x06\n\x0f\x41pprovalRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1f\n\x17requested_resource_name\x18\x02 \x01(\t\x12Y\n\x1drequested_resource_properties\x18\t \x01(\x0b\x32\x32.google.cloud.accessapproval.v1.ResourceProperties\x12\x46\n\x10requested_reason\x18\x03 \x01(\x0b\x32,.google.cloud.accessapproval.v1.AccessReason\x12L\n\x13requested_locations\x18\x04 \x01(\x0b\x32/.google.cloud.accessapproval.v1.AccessLocations\x12\x30\n\x0crequest_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x38\n\x14requested_expiration\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x42\n\x07\x61pprove\x18\x07 \x01(\x0b\x32/.google.cloud.accessapproval.v1.ApproveDecisionH\x00\x12\x42\n\x07\x64ismiss\x18\x08 \x01(\x0b\x32/.google.cloud.accessapproval.v1.DismissDecisionH\x00:\xe3\x01\xea\x41\xdf\x01\n-accessapproval.googleapis.com/ApprovalRequest\x12\x36projects/{project}/approvalRequests/{approval_request}\x12\x34\x66olders/{folder}/approvalRequests/{approval_request}\x12@organizations/{organization}/approvalRequests/{approval_request}B\n\n\x08\x64\x65\x63ision\"s\n\x0f\x45nrolledService\x12\x15\n\rcloud_product\x18\x01 \x01(\t\x12I\n\x10\x65nrollment_level\x18\x02 \x01(\x0e\x32/.google.cloud.accessapproval.v1.EnrollmentLevel\"\x9c\x04\n\x16\x41\x63\x63\x65ssApprovalSettings\x12G\n\x04name\x18\x01 \x01(\tB9\xfa\x41\x36\n4accessapproval.googleapis.com/AccessApprovalSettings\x12\x1b\n\x13notification_emails\x18\x02 \x03(\t\x12J\n\x11\x65nrolled_services\x18\x03 \x03(\x0b\x32/.google.cloud.accessapproval.v1.EnrolledService\x12\x1e\n\x11\x65nrolled_ancestor\x18\x04 \x01(\x08\x42\x03\xe0\x41\x03\x12\x1a\n\x12\x61\x63tive_key_version\x18\x06 \x01(\t\x12,\n\x1f\x61ncestor_has_active_key_version\x18\x07 \x01(\x08\x42\x03\xe0\x41\x03\x12 \n\x13invalid_key_version\x18\x08 \x01(\x08\x42\x03\xe0\x41\x03:\xc3\x01\xea\x41\xbf\x01\n4accessapproval.googleapis.com/AccessApprovalSettings\x12)projects/{project}/accessApprovalSettings\x12\'folders/{folder}/accessApprovalSettings\x12\x33organizations/{organization}/accessApprovalSettings\"\xb8\x02\n\x1c\x41\x63\x63\x65ssApprovalServiceAccount\x12M\n\x04name\x18\x01 \x01(\tB?\xfa\x41<\n:accessapproval.googleapis.com/AccessApprovalServiceAccount\x12\x15\n\raccount_email\x18\x02 \x01(\t:\xb1\x01\xea\x41\xad\x01\n:accessapproval.googleapis.com/AccessApprovalServiceAccount\x12!projects/{project}/serviceAccount\x12\x1f\x66olders/{folder}/serviceAccount\x12+organizations/{organization}/serviceAccount\"\x98\x01\n\x1bListApprovalRequestsMessage\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xfa\x41/\x12-accessapproval.googleapis.com/ApprovalRequest\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\"\x83\x01\n\x1cListApprovalRequestsResponse\x12J\n\x11\x61pproval_requests\x18\x01 \x03(\x0b\x32/.google.cloud.accessapproval.v1.ApprovalRequest\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"]\n\x19GetApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\"\x92\x01\n\x1d\x41pproveApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\x12/\n\x0b\x65xpire_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"a\n\x1d\x44ismissApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\"d\n InvalidateApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\"k\n GetAccessApprovalSettingsMessage\x12G\n\x04name\x18\x01 \x01(\tB9\xfa\x41\x36\n4accessapproval.googleapis.com/AccessApprovalSettings\"\xa0\x01\n#UpdateAccessApprovalSettingsMessage\x12H\n\x08settings\x18\x01 \x01(\x0b\x32\x36.google.cloud.accessapproval.v1.AccessApprovalSettings\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"n\n#DeleteAccessApprovalSettingsMessage\x12G\n\x04name\x18\x01 \x01(\tB9\xfa\x41\x36\n4accessapproval.googleapis.com/AccessApprovalSettings\"6\n&GetAccessApprovalServiceAccountMessage\x12\x0c\n\x04name\x18\x01 \x01(\t*B\n\x0f\x45nrollmentLevel\x12 \n\x1c\x45NROLLMENT_LEVEL_UNSPECIFIED\x10\x00\x12\r\n\tBLOCK_ALL\x10\x01\x32\x87\x17\n\x0e\x41\x63\x63\x65ssApproval\x12\xaa\x02\n\x14ListApprovalRequests\x12;.google.cloud.accessapproval.v1.ListApprovalRequestsMessage\x1a<.google.cloud.accessapproval.v1.ListApprovalRequestsResponse\"\x96\x01\x82\xd3\xe4\x93\x02\x86\x01\x12(/v1/{parent=projects/*}/approvalRequestsZ)\x12\'/v1/{parent=folders/*}/approvalRequestsZ/\x12-/v1/{parent=organizations/*}/approvalRequests\xda\x41\x06parent\x12\x97\x02\n\x12GetApprovalRequest\x12\x39.google.cloud.accessapproval.v1.GetApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\x94\x01\x82\xd3\xe4\x93\x02\x86\x01\x12(/v1/{name=projects/*/approvalRequests/*}Z)\x12\'/v1/{name=folders/*/approvalRequests/*}Z/\x12-/v1/{name=organizations/*/approvalRequests/*}\xda\x41\x04name\x12\xb9\x02\n\x16\x41pproveApprovalRequest\x12=.google.cloud.accessapproval.v1.ApproveApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\xae\x01\x82\xd3\xe4\x93\x02\xa7\x01\"0/v1/{name=projects/*/approvalRequests/*}:approve:\x01*Z4\"//v1/{name=folders/*/approvalRequests/*}:approve:\x01*Z:\"5/v1/{name=organizations/*/approvalRequests/*}:approve:\x01*\x12\xb9\x02\n\x16\x44ismissApprovalRequest\x12=.google.cloud.accessapproval.v1.DismissApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\xae\x01\x82\xd3\xe4\x93\x02\xa7\x01\"0/v1/{name=projects/*/approvalRequests/*}:dismiss:\x01*Z4\"//v1/{name=folders/*/approvalRequests/*}:dismiss:\x01*Z:\"5/v1/{name=organizations/*/approvalRequests/*}:dismiss:\x01*\x12\xc8\x02\n\x19InvalidateApprovalRequest\x12@.google.cloud.accessapproval.v1.InvalidateApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\xb7\x01\x82\xd3\xe4\x93\x02\xb0\x01\"3/v1/{name=projects/*/approvalRequests/*}:invalidate:\x01*Z7\"2/v1/{name=folders/*/approvalRequests/*}:invalidate:\x01*Z=\"8/v1/{name=organizations/*/approvalRequests/*}:invalidate:\x01*\x12\xb8\x02\n\x19GetAccessApprovalSettings\x12@.google.cloud.accessapproval.v1.GetAccessApprovalSettingsMessage\x1a\x36.google.cloud.accessapproval.v1.AccessApprovalSettings\"\xa0\x01\x82\xd3\xe4\x93\x02\x92\x01\x12,/v1/{name=projects/*/accessApprovalSettings}Z-\x12+/v1/{name=folders/*/accessApprovalSettings}Z3\x12\x31/v1/{name=organizations/*/accessApprovalSettings}\xda\x41\x04name\x12\x87\x03\n\x1cUpdateAccessApprovalSettings\x12\x43.google.cloud.accessapproval.v1.UpdateAccessApprovalSettingsMessage\x1a\x36.google.cloud.accessapproval.v1.AccessApprovalSettings\"\xe9\x01\x82\xd3\xe4\x93\x02\xcb\x01\x32\x35/v1/{settings.name=projects/*/accessApprovalSettings}:\x08settingsZ@24/v1/{settings.name=folders/*/accessApprovalSettings}:\x08settingsZF2:/v1/{settings.name=organizations/*/accessApprovalSettings}:\x08settings\xda\x41\x14settings,update_mask\x12\x9e\x02\n\x1c\x44\x65leteAccessApprovalSettings\x12\x43.google.cloud.accessapproval.v1.DeleteAccessApprovalSettingsMessage\x1a\x16.google.protobuf.Empty\"\xa0\x01\x82\xd3\xe4\x93\x02\x92\x01*,/v1/{name=projects/*/accessApprovalSettings}Z-*+/v1/{name=folders/*/accessApprovalSettings}Z3*1/v1/{name=organizations/*/accessApprovalSettings}\xda\x41\x04name\x12\xb1\x02\n\x1fGetAccessApprovalServiceAccount\x12\x46.google.cloud.accessapproval.v1.GetAccessApprovalServiceAccountMessage\x1a<.google.cloud.accessapproval.v1.AccessApprovalServiceAccount\"\x87\x01\x82\xd3\xe4\x93\x02z\x12$/v1/{name=projects/*/serviceAccount}Z%\x12#/v1/{name=folders/*/serviceAccount}Z+\x12)/v1/{name=organizations/*/serviceAccount}\xda\x41\x04name\x1aQ\xca\x41\x1d\x61\x63\x63\x65ssapproval.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xed\x01\n\"com.google.cloud.accessapproval.v1B\x13\x41\x63\x63\x65ssApprovalProtoP\x01ZJcloud.google.com/go/accessapproval/apiv1/accessapprovalpb;accessapprovalpb\xaa\x02\x1eGoogle.Cloud.AccessApproval.V1\xca\x02\x1eGoogle\\Cloud\\AccessApproval\\V1\xea\x02!Google::Cloud::AccessApproval::V1b\x06proto3"
17
+
18
+ pool = Google::Protobuf::DescriptorPool.generated_pool
19
+
20
+ begin
21
+ pool.add_serialized_file(descriptor_data)
22
+ rescue TypeError => e
23
+ # Compatibility code: will be removed in the next major version.
24
+ require 'google/protobuf/descriptor_pb'
25
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
26
+ parsed.clear_dependency
27
+ serialized = parsed.class.encode(parsed)
28
+ file = pool.add_serialized_file(serialized)
29
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
30
+ imports = [
31
+ ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
32
+ ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
33
+ ]
34
+ imports.each do |type_name, expected_filename|
35
+ import_file = pool.lookup(type_name).file_descriptor
36
+ if import_file.name != expected_filename
37
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
122
38
  end
123
39
  end
40
+ warn "Each proto file must use a consistent fully-qualified name."
41
+ warn "This will become an error in the next major version."
124
42
  end
125
43
 
126
44
  module Google
@@ -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?
@@ -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-cloud-access_approval-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.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-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