google-cloud-certificate_manager-v1 0.4.2 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c9389e4634607be587dfbe3e2109f56ce69b20e41121b50f4350d0062fa91603
4
- data.tar.gz: 5f3130a6f33b13d3cfbb0a874d21becfdf3235da5625d6f4a371c365f6d61965
3
+ metadata.gz: d888fd531727583124dc5fa4b42af122b07ab35c7d5f4238921781065ca8c876
4
+ data.tar.gz: 9c4b42a7c9dd78cdae886cd50695deb073d728959d9956c39bf6b315495d1c2a
5
5
  SHA512:
6
- metadata.gz: ae40865a7e10646cb14c496ddb91c8a3ba989ad3c36e7f3f62a1e0ce5ef5efe2c8f1d3688b2edc83392c41b387cccfb5dc9c9f01edc1daf11f2858d25a5cb0ad
7
- data.tar.gz: 780c67433299ad134e5bb86873d448ed66d4cafe31e0e02cbcdeb7eabb509cf6e13b038797321774106de1929d706c436d08a0dc0179ec821a5fc393167faafe
6
+ metadata.gz: eaffdb95d9959c5214d2b592d254343380779df2304ad6862013a45f4ccc3bbfd65ba64526deea1c6fb67d80eea77e825505b41c2a3e12e8e67239453e904804
7
+ data.tar.gz: 0424a4105eed0756773cf8f29929e93816b029735a2f5a4161b068b9c371313440505fa586e30b1b1bf0edd9ae7c09fa895f73586dce07abbeee5ea0fa5a540c
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
 
@@ -0,0 +1,102 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/config"
20
+
21
+ module Google
22
+ module Cloud
23
+ module CertificateManager
24
+ ##
25
+ # @example Loading just the REST part of this package, including all its services, and instantiating a REST client
26
+ #
27
+ # require "google/cloud/certificate_manager/v1/rest"
28
+ # client = ::Google::Cloud::CertificateManager::V1::CertificateManager::Rest::Client.new
29
+ #
30
+ module V1
31
+ ##
32
+ # @private
33
+ # Initialize the mixin bindings configuration
34
+ #
35
+ def self.configure
36
+ @configure ||= begin
37
+ namespace = ["Google", "Cloud", "CertificateManager"]
38
+ parent_config = while namespace.any?
39
+ parent_name = namespace.join "::"
40
+ parent_const = const_get parent_name
41
+ break parent_const.configure if parent_const.respond_to? :configure
42
+ namespace.pop
43
+ end
44
+
45
+ default_config = Configuration.new parent_config
46
+ default_config.bindings_override["google.cloud.location.Locations.GetLocation"] = [
47
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
48
+ uri_method: :get,
49
+ uri_template: "/v1/{name}",
50
+ matches: [
51
+ ["name", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
52
+ ],
53
+ body: nil
54
+ )
55
+ ]
56
+ default_config.bindings_override["google.cloud.location.Locations.ListLocations"] = [
57
+
58
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
59
+ uri_method: :get,
60
+ uri_template: "/v1/{name}/locations",
61
+ matches: [
62
+ ["name", %r{^projects/[^/]+/?$}, false]
63
+ ],
64
+ body: nil
65
+ )
66
+ ]
67
+ default_config
68
+ end
69
+ yield @configure if block_given?
70
+ @configure
71
+ end
72
+
73
+ ##
74
+ # @private
75
+ # Configuration class for the google.cloud.certificatemanager.v1 package.
76
+ #
77
+ # This class contains common configuration for all services
78
+ # of the google.cloud.certificatemanager.v1 package.
79
+ #
80
+ # This configuration is for internal use of the client library classes,
81
+ # and it is not intended that the end-users will read or change it.
82
+ #
83
+ class Configuration
84
+ extend ::Gapic::Config
85
+
86
+ # @private
87
+ # Overrides for http bindings for the RPC of the mixins for this package.
88
+ # Services in this package should use these when creating clients for the mixin services.
89
+ # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
90
+ config_attr :bindings_override, {}, ::Hash, nil
91
+
92
+ # @private
93
+ def initialize parent_config = nil
94
+ @parent_config = parent_config unless parent_config.nil?
95
+
96
+ yield self if block_given?
97
+ end
98
+ end
99
+ end
100
+ end
101
+ end
102
+ end
@@ -269,7 +269,7 @@ module Google
269
269
  credentials = @config.credentials
270
270
  # Use self-signed JWT if the endpoint is unchanged from default,
271
271
  # but only if the default endpoint does not have a region prefix.
272
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
272
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
273
273
  !@config.endpoint.split(".").first.include?("-")
274
274
  credentials ||= Credentials.default scope: @config.scope,
275
275
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -2655,9 +2655,9 @@ module Google
2655
2655
  # * (`String`) The path to a service account key file in JSON format
2656
2656
  # * (`Hash`) A service account key as a Hash
2657
2657
  # * (`Google::Auth::Credentials`) A googleauth credentials object
2658
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
2658
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
2659
2659
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
2660
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
2660
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
2661
2661
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
2662
2662
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
2663
2663
  # * (`nil`) indicating no credentials
@@ -2699,7 +2699,9 @@ module Google
2699
2699
  class Configuration
2700
2700
  extend ::Gapic::Config
2701
2701
 
2702
- config_attr :endpoint, "certificatemanager.googleapis.com", ::String
2702
+ DEFAULT_ENDPOINT = "certificatemanager.googleapis.com"
2703
+
2704
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
2703
2705
  config_attr :credentials, nil do |value|
2704
2706
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2705
2707
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -620,9 +620,9 @@ module Google
620
620
  # * (`String`) The path to a service account key file in JSON format
621
621
  # * (`Hash`) A service account key as a Hash
622
622
  # * (`Google::Auth::Credentials`) A googleauth credentials object
623
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
623
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
624
624
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
625
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
625
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
626
626
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
627
627
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
628
628
  # * (`nil`) indicating no credentials
@@ -664,7 +664,9 @@ module Google
664
664
  class Configuration
665
665
  extend ::Gapic::Config
666
666
 
667
- config_attr :endpoint, "certificatemanager.googleapis.com", ::String
667
+ DEFAULT_ENDPOINT = "certificatemanager.googleapis.com"
668
+
669
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
668
670
  config_attr :credentials, nil do |value|
669
671
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
670
672
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC