google-cloud-app_engine-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 +4 -4
- data/AUTHENTICATION.md +72 -101
- data/lib/google/cloud/app_engine/v1/applications/client.rb +32 -8
- data/lib/google/cloud/app_engine/v1/applications/operations.rb +28 -6
- data/lib/google/cloud/app_engine/v1/applications/rest/client.rb +34 -7
- data/lib/google/cloud/app_engine/v1/applications/rest/operations.rb +33 -8
- data/lib/google/cloud/app_engine/v1/applications/rest/service_stub.rb +14 -2
- data/lib/google/cloud/app_engine/v1/authorized_certificates/client.rb +31 -8
- data/lib/google/cloud/app_engine/v1/authorized_certificates/rest/client.rb +33 -7
- data/lib/google/cloud/app_engine/v1/authorized_certificates/rest/service_stub.rb +14 -2
- data/lib/google/cloud/app_engine/v1/authorized_domains/client.rb +31 -8
- data/lib/google/cloud/app_engine/v1/authorized_domains/rest/client.rb +33 -7
- data/lib/google/cloud/app_engine/v1/authorized_domains/rest/service_stub.rb +14 -2
- data/lib/google/cloud/app_engine/v1/domain_mappings/client.rb +32 -8
- data/lib/google/cloud/app_engine/v1/domain_mappings/operations.rb +28 -6
- data/lib/google/cloud/app_engine/v1/domain_mappings/rest/client.rb +34 -7
- data/lib/google/cloud/app_engine/v1/domain_mappings/rest/operations.rb +33 -8
- data/lib/google/cloud/app_engine/v1/domain_mappings/rest/service_stub.rb +14 -2
- data/lib/google/cloud/app_engine/v1/firewall/client.rb +31 -8
- data/lib/google/cloud/app_engine/v1/firewall/rest/client.rb +33 -7
- data/lib/google/cloud/app_engine/v1/firewall/rest/service_stub.rb +14 -2
- data/lib/google/cloud/app_engine/v1/instances/client.rb +32 -8
- data/lib/google/cloud/app_engine/v1/instances/operations.rb +28 -6
- data/lib/google/cloud/app_engine/v1/instances/rest/client.rb +34 -7
- data/lib/google/cloud/app_engine/v1/instances/rest/operations.rb +33 -8
- data/lib/google/cloud/app_engine/v1/instances/rest/service_stub.rb +14 -2
- data/lib/google/cloud/app_engine/v1/services/client.rb +32 -8
- data/lib/google/cloud/app_engine/v1/services/operations.rb +28 -6
- data/lib/google/cloud/app_engine/v1/services/rest/client.rb +34 -7
- data/lib/google/cloud/app_engine/v1/services/rest/operations.rb +33 -8
- data/lib/google/cloud/app_engine/v1/services/rest/service_stub.rb +14 -2
- data/lib/google/cloud/app_engine/v1/version.rb +1 -1
- data/lib/google/cloud/app_engine/v1/versions/client.rb +32 -8
- data/lib/google/cloud/app_engine/v1/versions/operations.rb +28 -6
- data/lib/google/cloud/app_engine/v1/versions/rest/client.rb +34 -7
- data/lib/google/cloud/app_engine/v1/versions/rest/operations.rb +33 -8
- data/lib/google/cloud/app_engine/v1/versions/rest/service_stub.rb +14 -2
- data/proto_docs/google/api/client.rb +14 -0
- metadata +5 -5
@@ -32,6 +32,9 @@ module Google
|
|
32
32
|
# Manages domains serving an application.
|
33
33
|
#
|
34
34
|
class Client
|
35
|
+
# @private
|
36
|
+
DEFAULT_ENDPOINT_TEMPLATE = "appengine.$UNIVERSE_DOMAIN$"
|
37
|
+
|
35
38
|
# @private
|
36
39
|
attr_reader :domain_mappings_stub
|
37
40
|
|
@@ -90,6 +93,15 @@ module Google
|
|
90
93
|
@config
|
91
94
|
end
|
92
95
|
|
96
|
+
##
|
97
|
+
# The effective universe domain
|
98
|
+
#
|
99
|
+
# @return [String]
|
100
|
+
#
|
101
|
+
def universe_domain
|
102
|
+
@domain_mappings_stub.universe_domain
|
103
|
+
end
|
104
|
+
|
93
105
|
##
|
94
106
|
# Create a new DomainMappings REST client object.
|
95
107
|
#
|
@@ -117,8 +129,9 @@ module Google
|
|
117
129
|
credentials = @config.credentials
|
118
130
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
119
131
|
# but only if the default endpoint does not have a region prefix.
|
120
|
-
enable_self_signed_jwt = @config.endpoint
|
121
|
-
|
132
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
133
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
134
|
+
!@config.endpoint.split(".").first.include?("-"))
|
122
135
|
credentials ||= Credentials.default scope: @config.scope,
|
123
136
|
enable_self_signed_jwt: enable_self_signed_jwt
|
124
137
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -132,9 +145,15 @@ module Google
|
|
132
145
|
config.credentials = credentials
|
133
146
|
config.quota_project = @quota_project_id
|
134
147
|
config.endpoint = @config.endpoint
|
148
|
+
config.universe_domain = @config.universe_domain
|
135
149
|
end
|
136
150
|
|
137
|
-
@domain_mappings_stub = ::Google::Cloud::AppEngine::V1::DomainMappings::Rest::ServiceStub.new
|
151
|
+
@domain_mappings_stub = ::Google::Cloud::AppEngine::V1::DomainMappings::Rest::ServiceStub.new(
|
152
|
+
endpoint: @config.endpoint,
|
153
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
154
|
+
universe_domain: @config.universe_domain,
|
155
|
+
credentials: credentials
|
156
|
+
)
|
138
157
|
end
|
139
158
|
|
140
159
|
##
|
@@ -619,9 +638,9 @@ module Google
|
|
619
638
|
# end
|
620
639
|
#
|
621
640
|
# @!attribute [rw] endpoint
|
622
|
-
#
|
623
|
-
#
|
624
|
-
# @return [::String]
|
641
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
642
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
643
|
+
# @return [::String,nil]
|
625
644
|
# @!attribute [rw] credentials
|
626
645
|
# Credentials to send with calls. You may provide any of the following types:
|
627
646
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -658,13 +677,20 @@ module Google
|
|
658
677
|
# @!attribute [rw] quota_project
|
659
678
|
# A separate project against which to charge quota.
|
660
679
|
# @return [::String]
|
680
|
+
# @!attribute [rw] universe_domain
|
681
|
+
# The universe domain within which to make requests. This determines the
|
682
|
+
# default endpoint URL. The default value of nil uses the environment
|
683
|
+
# universe (usually the default "googleapis.com" universe).
|
684
|
+
# @return [::String,nil]
|
661
685
|
#
|
662
686
|
class Configuration
|
663
687
|
extend ::Gapic::Config
|
664
688
|
|
689
|
+
# @private
|
690
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
665
691
|
DEFAULT_ENDPOINT = "appengine.googleapis.com"
|
666
692
|
|
667
|
-
config_attr :endpoint,
|
693
|
+
config_attr :endpoint, nil, ::String, nil
|
668
694
|
config_attr :credentials, nil do |value|
|
669
695
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
670
696
|
allowed.any? { |klass| klass === value }
|
@@ -676,6 +702,7 @@ module Google
|
|
676
702
|
config_attr :metadata, nil, ::Hash, nil
|
677
703
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
678
704
|
config_attr :quota_project, nil, ::String, nil
|
705
|
+
config_attr :universe_domain, nil, ::String, nil
|
679
706
|
|
680
707
|
# @private
|
681
708
|
def initialize parent_config = nil
|
@@ -26,6 +26,9 @@ module Google
|
|
26
26
|
module Rest
|
27
27
|
# Service that implements Longrunning Operations API.
|
28
28
|
class Operations
|
29
|
+
# @private
|
30
|
+
DEFAULT_ENDPOINT_TEMPLATE = "appengine.$UNIVERSE_DOMAIN$"
|
31
|
+
|
29
32
|
# @private
|
30
33
|
attr_reader :operations_stub
|
31
34
|
|
@@ -60,6 +63,15 @@ module Google
|
|
60
63
|
@config
|
61
64
|
end
|
62
65
|
|
66
|
+
##
|
67
|
+
# The effective universe domain
|
68
|
+
#
|
69
|
+
# @return [String]
|
70
|
+
#
|
71
|
+
def universe_domain
|
72
|
+
@operations_stub.universe_domain
|
73
|
+
end
|
74
|
+
|
63
75
|
##
|
64
76
|
# Create a new Operations client object.
|
65
77
|
#
|
@@ -84,8 +96,10 @@ module Google
|
|
84
96
|
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
85
97
|
|
86
98
|
@operations_stub = OperationsServiceStub.new(
|
87
|
-
endpoint:
|
88
|
-
|
99
|
+
endpoint: @config.endpoint,
|
100
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
101
|
+
universe_domain: @config.universe_domain,
|
102
|
+
credentials: credentials
|
89
103
|
)
|
90
104
|
|
91
105
|
# Used by an LRO wrapper for some methods of this service
|
@@ -478,9 +492,9 @@ module Google
|
|
478
492
|
# end
|
479
493
|
#
|
480
494
|
# @!attribute [rw] endpoint
|
481
|
-
#
|
482
|
-
#
|
483
|
-
# @return [::String]
|
495
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
496
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
497
|
+
# @return [::String,nil]
|
484
498
|
# @!attribute [rw] credentials
|
485
499
|
# Credentials to send with calls. You may provide any of the following types:
|
486
500
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -517,13 +531,20 @@ module Google
|
|
517
531
|
# @!attribute [rw] quota_project
|
518
532
|
# A separate project against which to charge quota.
|
519
533
|
# @return [::String]
|
534
|
+
# @!attribute [rw] universe_domain
|
535
|
+
# The universe domain within which to make requests. This determines the
|
536
|
+
# default endpoint URL. The default value of nil uses the environment
|
537
|
+
# universe (usually the default "googleapis.com" universe).
|
538
|
+
# @return [::String,nil]
|
520
539
|
#
|
521
540
|
class Configuration
|
522
541
|
extend ::Gapic::Config
|
523
542
|
|
543
|
+
# @private
|
544
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
524
545
|
DEFAULT_ENDPOINT = "appengine.googleapis.com"
|
525
546
|
|
526
|
-
config_attr :endpoint,
|
547
|
+
config_attr :endpoint, nil, ::String, nil
|
527
548
|
config_attr :credentials, nil do |value|
|
528
549
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
529
550
|
allowed.any? { |klass| klass === value }
|
@@ -535,6 +556,7 @@ module Google
|
|
535
556
|
config_attr :metadata, nil, ::Hash, nil
|
536
557
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
537
558
|
config_attr :quota_project, nil, ::String, nil
|
559
|
+
config_attr :universe_domain, nil, ::String, nil
|
538
560
|
|
539
561
|
# @private
|
540
562
|
def initialize parent_config = nil
|
@@ -617,12 +639,15 @@ module Google
|
|
617
639
|
# Service stub contains baseline method implementations
|
618
640
|
# including transcoding, making the REST call, and deserialing the response.
|
619
641
|
class OperationsServiceStub
|
620
|
-
def initialize endpoint:, credentials:
|
642
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
|
621
643
|
# These require statements are intentionally placed here to initialize
|
622
644
|
# the REST modules only when it's required.
|
623
645
|
require "gapic/rest"
|
624
646
|
|
625
|
-
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
647
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
648
|
+
endpoint_template: endpoint_template,
|
649
|
+
universe_domain: universe_domain,
|
650
|
+
credentials: credentials
|
626
651
|
end
|
627
652
|
|
628
653
|
##
|
@@ -30,16 +30,28 @@ module Google
|
|
30
30
|
# including transcoding, making the REST call, and deserialing the response.
|
31
31
|
#
|
32
32
|
class ServiceStub
|
33
|
-
def initialize endpoint:, credentials:
|
33
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
|
34
34
|
# These require statements are intentionally placed here to initialize
|
35
35
|
# the REST modules only when it's required.
|
36
36
|
require "gapic/rest"
|
37
37
|
|
38
|
-
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
39
|
+
endpoint_template: endpoint_template,
|
40
|
+
universe_domain: universe_domain,
|
41
|
+
credentials: credentials,
|
39
42
|
numeric_enums: true,
|
40
43
|
raise_faraday_errors: false
|
41
44
|
end
|
42
45
|
|
46
|
+
##
|
47
|
+
# The effective universe domain
|
48
|
+
#
|
49
|
+
# @return [String]
|
50
|
+
#
|
51
|
+
def universe_domain
|
52
|
+
@client_stub.universe_domain
|
53
|
+
end
|
54
|
+
|
43
55
|
##
|
44
56
|
# Baseline implementation for the list_domain_mappings REST call
|
45
57
|
#
|
@@ -39,6 +39,9 @@ module Google
|
|
39
39
|
# set to "allow" if not otherwise specified by the user.
|
40
40
|
#
|
41
41
|
class Client
|
42
|
+
# @private
|
43
|
+
DEFAULT_ENDPOINT_TEMPLATE = "appengine.$UNIVERSE_DOMAIN$"
|
44
|
+
|
42
45
|
# @private
|
43
46
|
attr_reader :firewall_stub
|
44
47
|
|
@@ -97,6 +100,15 @@ module Google
|
|
97
100
|
@config
|
98
101
|
end
|
99
102
|
|
103
|
+
##
|
104
|
+
# The effective universe domain
|
105
|
+
#
|
106
|
+
# @return [String]
|
107
|
+
#
|
108
|
+
def universe_domain
|
109
|
+
@firewall_stub.universe_domain
|
110
|
+
end
|
111
|
+
|
100
112
|
##
|
101
113
|
# Create a new Firewall client object.
|
102
114
|
#
|
@@ -130,8 +142,9 @@ module Google
|
|
130
142
|
credentials = @config.credentials
|
131
143
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
132
144
|
# but only if the default endpoint does not have a region prefix.
|
133
|
-
enable_self_signed_jwt = @config.endpoint
|
134
|
-
|
145
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
146
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
147
|
+
!@config.endpoint.split(".").first.include?("-"))
|
135
148
|
credentials ||= Credentials.default scope: @config.scope,
|
136
149
|
enable_self_signed_jwt: enable_self_signed_jwt
|
137
150
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -142,8 +155,10 @@ module Google
|
|
142
155
|
|
143
156
|
@firewall_stub = ::Gapic::ServiceStub.new(
|
144
157
|
::Google::Cloud::AppEngine::V1::Firewall::Stub,
|
145
|
-
credentials:
|
146
|
-
endpoint:
|
158
|
+
credentials: credentials,
|
159
|
+
endpoint: @config.endpoint,
|
160
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
161
|
+
universe_domain: @config.universe_domain,
|
147
162
|
channel_args: @config.channel_args,
|
148
163
|
interceptors: @config.interceptors,
|
149
164
|
channel_pool_config: @config.channel_pool
|
@@ -732,9 +747,9 @@ module Google
|
|
732
747
|
# end
|
733
748
|
#
|
734
749
|
# @!attribute [rw] endpoint
|
735
|
-
#
|
736
|
-
#
|
737
|
-
# @return [::String]
|
750
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
751
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
752
|
+
# @return [::String,nil]
|
738
753
|
# @!attribute [rw] credentials
|
739
754
|
# Credentials to send with calls. You may provide any of the following types:
|
740
755
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -780,13 +795,20 @@ module Google
|
|
780
795
|
# @!attribute [rw] quota_project
|
781
796
|
# A separate project against which to charge quota.
|
782
797
|
# @return [::String]
|
798
|
+
# @!attribute [rw] universe_domain
|
799
|
+
# The universe domain within which to make requests. This determines the
|
800
|
+
# default endpoint URL. The default value of nil uses the environment
|
801
|
+
# universe (usually the default "googleapis.com" universe).
|
802
|
+
# @return [::String,nil]
|
783
803
|
#
|
784
804
|
class Configuration
|
785
805
|
extend ::Gapic::Config
|
786
806
|
|
807
|
+
# @private
|
808
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
787
809
|
DEFAULT_ENDPOINT = "appengine.googleapis.com"
|
788
810
|
|
789
|
-
config_attr :endpoint,
|
811
|
+
config_attr :endpoint, nil, ::String, nil
|
790
812
|
config_attr :credentials, nil do |value|
|
791
813
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
792
814
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -801,6 +823,7 @@ module Google
|
|
801
823
|
config_attr :metadata, nil, ::Hash, nil
|
802
824
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
803
825
|
config_attr :quota_project, nil, ::String, nil
|
826
|
+
config_attr :universe_domain, nil, ::String, nil
|
804
827
|
|
805
828
|
# @private
|
806
829
|
def initialize parent_config = nil
|
@@ -41,6 +41,9 @@ module Google
|
|
41
41
|
# set to "allow" if not otherwise specified by the user.
|
42
42
|
#
|
43
43
|
class Client
|
44
|
+
# @private
|
45
|
+
DEFAULT_ENDPOINT_TEMPLATE = "appengine.$UNIVERSE_DOMAIN$"
|
46
|
+
|
44
47
|
# @private
|
45
48
|
attr_reader :firewall_stub
|
46
49
|
|
@@ -99,6 +102,15 @@ module Google
|
|
99
102
|
@config
|
100
103
|
end
|
101
104
|
|
105
|
+
##
|
106
|
+
# The effective universe domain
|
107
|
+
#
|
108
|
+
# @return [String]
|
109
|
+
#
|
110
|
+
def universe_domain
|
111
|
+
@firewall_stub.universe_domain
|
112
|
+
end
|
113
|
+
|
102
114
|
##
|
103
115
|
# Create a new Firewall REST client object.
|
104
116
|
#
|
@@ -126,8 +138,9 @@ module Google
|
|
126
138
|
credentials = @config.credentials
|
127
139
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
128
140
|
# but only if the default endpoint does not have a region prefix.
|
129
|
-
enable_self_signed_jwt = @config.endpoint
|
130
|
-
|
141
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
142
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
143
|
+
!@config.endpoint.split(".").first.include?("-"))
|
131
144
|
credentials ||= Credentials.default scope: @config.scope,
|
132
145
|
enable_self_signed_jwt: enable_self_signed_jwt
|
133
146
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -137,7 +150,12 @@ module Google
|
|
137
150
|
@quota_project_id = @config.quota_project
|
138
151
|
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
139
152
|
|
140
|
-
@firewall_stub = ::Google::Cloud::AppEngine::V1::Firewall::Rest::ServiceStub.new
|
153
|
+
@firewall_stub = ::Google::Cloud::AppEngine::V1::Firewall::Rest::ServiceStub.new(
|
154
|
+
endpoint: @config.endpoint,
|
155
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
156
|
+
universe_domain: @config.universe_domain,
|
157
|
+
credentials: credentials
|
158
|
+
)
|
141
159
|
end
|
142
160
|
|
143
161
|
# Service calls
|
@@ -680,9 +698,9 @@ module Google
|
|
680
698
|
# end
|
681
699
|
#
|
682
700
|
# @!attribute [rw] endpoint
|
683
|
-
#
|
684
|
-
#
|
685
|
-
# @return [::String]
|
701
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
702
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
703
|
+
# @return [::String,nil]
|
686
704
|
# @!attribute [rw] credentials
|
687
705
|
# Credentials to send with calls. You may provide any of the following types:
|
688
706
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -719,13 +737,20 @@ module Google
|
|
719
737
|
# @!attribute [rw] quota_project
|
720
738
|
# A separate project against which to charge quota.
|
721
739
|
# @return [::String]
|
740
|
+
# @!attribute [rw] universe_domain
|
741
|
+
# The universe domain within which to make requests. This determines the
|
742
|
+
# default endpoint URL. The default value of nil uses the environment
|
743
|
+
# universe (usually the default "googleapis.com" universe).
|
744
|
+
# @return [::String,nil]
|
722
745
|
#
|
723
746
|
class Configuration
|
724
747
|
extend ::Gapic::Config
|
725
748
|
|
749
|
+
# @private
|
750
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
726
751
|
DEFAULT_ENDPOINT = "appengine.googleapis.com"
|
727
752
|
|
728
|
-
config_attr :endpoint,
|
753
|
+
config_attr :endpoint, nil, ::String, nil
|
729
754
|
config_attr :credentials, nil do |value|
|
730
755
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
731
756
|
allowed.any? { |klass| klass === value }
|
@@ -737,6 +762,7 @@ module Google
|
|
737
762
|
config_attr :metadata, nil, ::Hash, nil
|
738
763
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
739
764
|
config_attr :quota_project, nil, ::String, nil
|
765
|
+
config_attr :universe_domain, nil, ::String, nil
|
740
766
|
|
741
767
|
# @private
|
742
768
|
def initialize parent_config = nil
|
@@ -30,16 +30,28 @@ module Google
|
|
30
30
|
# including transcoding, making the REST call, and deserialing the response.
|
31
31
|
#
|
32
32
|
class ServiceStub
|
33
|
-
def initialize endpoint:, credentials:
|
33
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
|
34
34
|
# These require statements are intentionally placed here to initialize
|
35
35
|
# the REST modules only when it's required.
|
36
36
|
require "gapic/rest"
|
37
37
|
|
38
|
-
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
39
|
+
endpoint_template: endpoint_template,
|
40
|
+
universe_domain: universe_domain,
|
41
|
+
credentials: credentials,
|
39
42
|
numeric_enums: true,
|
40
43
|
raise_faraday_errors: false
|
41
44
|
end
|
42
45
|
|
46
|
+
##
|
47
|
+
# The effective universe domain
|
48
|
+
#
|
49
|
+
# @return [String]
|
50
|
+
#
|
51
|
+
def universe_domain
|
52
|
+
@client_stub.universe_domain
|
53
|
+
end
|
54
|
+
|
43
55
|
##
|
44
56
|
# Baseline implementation for the list_ingress_rules REST call
|
45
57
|
#
|
@@ -30,6 +30,9 @@ module Google
|
|
30
30
|
# Manages instances of a version.
|
31
31
|
#
|
32
32
|
class Client
|
33
|
+
# @private
|
34
|
+
DEFAULT_ENDPOINT_TEMPLATE = "appengine.$UNIVERSE_DOMAIN$"
|
35
|
+
|
33
36
|
# @private
|
34
37
|
attr_reader :instances_stub
|
35
38
|
|
@@ -88,6 +91,15 @@ module Google
|
|
88
91
|
@config
|
89
92
|
end
|
90
93
|
|
94
|
+
##
|
95
|
+
# The effective universe domain
|
96
|
+
#
|
97
|
+
# @return [String]
|
98
|
+
#
|
99
|
+
def universe_domain
|
100
|
+
@instances_stub.universe_domain
|
101
|
+
end
|
102
|
+
|
91
103
|
##
|
92
104
|
# Create a new Instances client object.
|
93
105
|
#
|
@@ -121,8 +133,9 @@ module Google
|
|
121
133
|
credentials = @config.credentials
|
122
134
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
123
135
|
# but only if the default endpoint does not have a region prefix.
|
124
|
-
enable_self_signed_jwt = @config.endpoint
|
125
|
-
|
136
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
137
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
138
|
+
!@config.endpoint.split(".").first.include?("-"))
|
126
139
|
credentials ||= Credentials.default scope: @config.scope,
|
127
140
|
enable_self_signed_jwt: enable_self_signed_jwt
|
128
141
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -135,12 +148,15 @@ module Google
|
|
135
148
|
config.credentials = credentials
|
136
149
|
config.quota_project = @quota_project_id
|
137
150
|
config.endpoint = @config.endpoint
|
151
|
+
config.universe_domain = @config.universe_domain
|
138
152
|
end
|
139
153
|
|
140
154
|
@instances_stub = ::Gapic::ServiceStub.new(
|
141
155
|
::Google::Cloud::AppEngine::V1::Instances::Stub,
|
142
|
-
credentials:
|
143
|
-
endpoint:
|
156
|
+
credentials: credentials,
|
157
|
+
endpoint: @config.endpoint,
|
158
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
159
|
+
universe_domain: @config.universe_domain,
|
144
160
|
channel_args: @config.channel_args,
|
145
161
|
interceptors: @config.interceptors,
|
146
162
|
channel_pool_config: @config.channel_pool
|
@@ -584,9 +600,9 @@ module Google
|
|
584
600
|
# end
|
585
601
|
#
|
586
602
|
# @!attribute [rw] endpoint
|
587
|
-
#
|
588
|
-
#
|
589
|
-
# @return [::String]
|
603
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
604
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
605
|
+
# @return [::String,nil]
|
590
606
|
# @!attribute [rw] credentials
|
591
607
|
# Credentials to send with calls. You may provide any of the following types:
|
592
608
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -632,13 +648,20 @@ module Google
|
|
632
648
|
# @!attribute [rw] quota_project
|
633
649
|
# A separate project against which to charge quota.
|
634
650
|
# @return [::String]
|
651
|
+
# @!attribute [rw] universe_domain
|
652
|
+
# The universe domain within which to make requests. This determines the
|
653
|
+
# default endpoint URL. The default value of nil uses the environment
|
654
|
+
# universe (usually the default "googleapis.com" universe).
|
655
|
+
# @return [::String,nil]
|
635
656
|
#
|
636
657
|
class Configuration
|
637
658
|
extend ::Gapic::Config
|
638
659
|
|
660
|
+
# @private
|
661
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
639
662
|
DEFAULT_ENDPOINT = "appengine.googleapis.com"
|
640
663
|
|
641
|
-
config_attr :endpoint,
|
664
|
+
config_attr :endpoint, nil, ::String, nil
|
642
665
|
config_attr :credentials, nil do |value|
|
643
666
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
644
667
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -653,6 +676,7 @@ module Google
|
|
653
676
|
config_attr :metadata, nil, ::Hash, nil
|
654
677
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
655
678
|
config_attr :quota_project, nil, ::String, nil
|
679
|
+
config_attr :universe_domain, nil, ::String, nil
|
656
680
|
|
657
681
|
# @private
|
658
682
|
def initialize parent_config = nil
|
@@ -26,6 +26,9 @@ module Google
|
|
26
26
|
module Instances
|
27
27
|
# Service that implements Longrunning Operations API.
|
28
28
|
class Operations
|
29
|
+
# @private
|
30
|
+
DEFAULT_ENDPOINT_TEMPLATE = "appengine.$UNIVERSE_DOMAIN$"
|
31
|
+
|
29
32
|
# @private
|
30
33
|
attr_reader :operations_stub
|
31
34
|
|
@@ -60,6 +63,15 @@ module Google
|
|
60
63
|
@config
|
61
64
|
end
|
62
65
|
|
66
|
+
##
|
67
|
+
# The effective universe domain
|
68
|
+
#
|
69
|
+
# @return [String]
|
70
|
+
#
|
71
|
+
def universe_domain
|
72
|
+
@operations_stub.universe_domain
|
73
|
+
end
|
74
|
+
|
63
75
|
##
|
64
76
|
# Create a new Operations client object.
|
65
77
|
#
|
@@ -90,8 +102,10 @@ module Google
|
|
90
102
|
|
91
103
|
@operations_stub = ::Gapic::ServiceStub.new(
|
92
104
|
::Google::Longrunning::Operations::Stub,
|
93
|
-
credentials:
|
94
|
-
endpoint:
|
105
|
+
credentials: credentials,
|
106
|
+
endpoint: @config.endpoint,
|
107
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
108
|
+
universe_domain: @config.universe_domain,
|
95
109
|
channel_args: @config.channel_args,
|
96
110
|
interceptors: @config.interceptors,
|
97
111
|
channel_pool_config: @config.channel_pool
|
@@ -613,9 +627,9 @@ module Google
|
|
613
627
|
# end
|
614
628
|
#
|
615
629
|
# @!attribute [rw] endpoint
|
616
|
-
#
|
617
|
-
#
|
618
|
-
# @return [::String]
|
630
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
631
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
632
|
+
# @return [::String,nil]
|
619
633
|
# @!attribute [rw] credentials
|
620
634
|
# Credentials to send with calls. You may provide any of the following types:
|
621
635
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -661,13 +675,20 @@ module Google
|
|
661
675
|
# @!attribute [rw] quota_project
|
662
676
|
# A separate project against which to charge quota.
|
663
677
|
# @return [::String]
|
678
|
+
# @!attribute [rw] universe_domain
|
679
|
+
# The universe domain within which to make requests. This determines the
|
680
|
+
# default endpoint URL. The default value of nil uses the environment
|
681
|
+
# universe (usually the default "googleapis.com" universe).
|
682
|
+
# @return [::String,nil]
|
664
683
|
#
|
665
684
|
class Configuration
|
666
685
|
extend ::Gapic::Config
|
667
686
|
|
687
|
+
# @private
|
688
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
668
689
|
DEFAULT_ENDPOINT = "appengine.googleapis.com"
|
669
690
|
|
670
|
-
config_attr :endpoint,
|
691
|
+
config_attr :endpoint, nil, ::String, nil
|
671
692
|
config_attr :credentials, nil do |value|
|
672
693
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
673
694
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -682,6 +703,7 @@ module Google
|
|
682
703
|
config_attr :metadata, nil, ::Hash, nil
|
683
704
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
684
705
|
config_attr :quota_project, nil, ::String, nil
|
706
|
+
config_attr :universe_domain, nil, ::String, nil
|
685
707
|
|
686
708
|
# @private
|
687
709
|
def initialize parent_config = nil
|