google-cloud-beyond_corp 0.1.0 → 1.1.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: eb07413879b28298294b86144a5a84643cc90701313841cc6c0116c81f56d638
4
- data.tar.gz: d342c981dbed47d3ea1531b5127003460d57ff4fc3f3e7b456e6f708c876ee8c
3
+ metadata.gz: 612c400b501cca719c9eb0a2236bc9596b3f5830b0f6899a7438e34abd233c76
4
+ data.tar.gz: 1678a8dc511c28bc182e4ad35c8da903ae2071b53b2f0a36e666fd2ed197b36d
5
5
  SHA512:
6
- metadata.gz: 2164016a2e58c53470644cf73aed95d612c285ad4ec7523864003c81988deaf7218e48fdc0396839816fb6dd0e3fa483eb9b429703c1d7094f3fd9c9dfb30699
7
- data.tar.gz: 027ccb510f9fec45e86fc62b3dde3fc9bbb561ddf90653408db8768b9e5350b317087a0113aabe82fc6bdf0b567bfe0bbbd8e530513d0175b5ff7ae14574b1a1
6
+ metadata.gz: dc7845798ebcc589cc3016b31404d24ae0f594f820cf9c48b40c5836d074b9d0a2a52085044cf63318faaebccc3fff1b1d8e012324ce6194982a47e4f66e2863
7
+ data.tar.gz: d4867cf7efc5a5decdd57e592f6c61400c74b239c312dd5d9fb6385939c00dd6bf452b6a6361ead87f8b1fb64b524127df35e1aa3dd56bbce0406ab9688edfa1
data/AUTHENTICATION.md CHANGED
@@ -1,149 +1,122 @@
1
1
  # Authentication
2
2
 
3
- In general, the google-cloud-beyond_corp library uses
4
- [Service Account](https://cloud.google.com/iam/docs/creating-managing-service-accounts)
5
- credentials to connect to Google Cloud services. When running within
6
- [Google Cloud Platform environments](#google-cloud-platform-environments) the
7
- credentials will be discovered automatically. When running on other
8
- environments, the Service Account credentials can be specified by providing the
9
- path to the
10
- [JSON keyfile](https://cloud.google.com/iam/docs/managing-service-account-keys)
11
- for the account (or the JSON itself) in
12
- [environment variables](#environment-variables). Additionally, Cloud SDK
13
- credentials can also be discovered automatically, but this is only recommended
14
- during development.
3
+ The recommended way to authenticate to the google-cloud-beyond_corp library is to use
4
+ [Application Default Credentials (ADC)](https://cloud.google.com/docs/authentication/application-default-credentials).
5
+ To review all of your authentication options, see [Credentials lookup](#credential-lookup).
15
6
 
16
7
  ## Quickstart
17
8
 
18
- 1. [Create a service account and credentials](#creating-a-service-account).
19
- 2. Set the [environment variable](#environment-variables).
9
+ The following example shows how to set up authentication for a local development
10
+ environment with your user credentials.
20
11
 
21
- ```sh
22
- export GOOGLE_CLOUD_CREDENTIALS=path/to/keyfile.json
23
- ```
24
-
25
- 3. Initialize the client.
12
+ **NOTE:** This method is _not_ recommended for running in production. User credentials
13
+ should be used only during development.
26
14
 
27
- ```ruby
28
- require "google/cloud/beyond_corp"
15
+ 1. [Download and install the Google Cloud CLI](https://cloud.google.com/sdk).
16
+ 2. Set up a local ADC file with your user credentials:
29
17
 
30
- client = Google::Cloud::BeyondCorp::AppConnections.app_connections_service
18
+ ```sh
19
+ gcloud auth application-default login
31
20
  ```
32
21
 
33
- ## Credential Lookup
34
-
35
- The google-cloud-beyond_corp library aims to make authentication
36
- as simple as possible, and provides several mechanisms to configure your system
37
- without requiring **Service Account Credentials** directly in code.
38
-
39
- **Credentials** are discovered in the following order:
40
-
41
- 1. Specify credentials in method arguments
42
- 2. Specify credentials in configuration
43
- 3. Discover credentials path in environment variables
44
- 4. Discover credentials JSON in environment variables
45
- 5. Discover credentials file in the Cloud SDK's path
46
- 6. Discover GCP credentials
47
-
48
- ### Google Cloud Platform environments
22
+ 3. Write code as if already authenticated.
49
23
 
50
- When running on Google Cloud Platform (GCP), including Google Compute Engine
51
- (GCE), Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud
52
- Functions (GCF) and Cloud Run, **Credentials** are discovered automatically.
53
- Code should be written as if already authenticated.
24
+ For more information about setting up authentication for a local development environment, see
25
+ [Set up Application Default Credentials](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-dev).
54
26
 
55
- ### Environment Variables
27
+ ## Credential Lookup
56
28
 
57
- The **Credentials JSON** can be placed in environment variables instead of
58
- declaring them directly in code. Each service has its own environment variable,
59
- allowing for different service accounts to be used for different services. (See
60
- the READMEs for the individual service gems for details.) The path to the
61
- **Credentials JSON** file can be stored in the environment variable, or the
62
- **Credentials JSON** itself can be stored for environments such as Docker
63
- containers where writing files is difficult or not encouraged.
29
+ The google-cloud-beyond_corp library provides several mechanisms to configure your system.
30
+ Generally, using Application Default Credentials to facilitate automatic
31
+ credentials discovery is the easist method. But if you need to explicitly specify
32
+ credentials, there are several methods available to you.
64
33
 
65
- The environment variables that google-cloud-beyond_corp
66
- checks for credentials are configured on the service Credentials class (such as
67
- `::Google::Cloud::BeyondCorp::AppConnections::V1::AppConnectionsService::Credentials`):
34
+ Credentials are accepted in the following ways, in the following order or precedence:
68
35
 
69
- * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
70
- * `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
71
- * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
36
+ 1. Credentials specified in method arguments
37
+ 2. Credentials specified in configuration
38
+ 3. Credentials pointed to or included in environment variables
39
+ 4. Credentials found in local ADC file
40
+ 5. Credentials returned by the metadata server for the attached service account (GCP)
72
41
 
73
- ```ruby
74
- require "google/cloud/beyond_corp"
75
-
76
- ENV["GOOGLE_CLOUD_CREDENTIALS"] = "path/to/keyfile.json"
42
+ ### Configuration
77
43
 
78
- client = Google::Cloud::BeyondCorp::AppConnections.app_connections_service
79
- ```
44
+ You can configure a path to a JSON credentials file, either for an individual client object or
45
+ globally, for all client objects. The JSON file can contain credentials created for
46
+ [workload identity federation](https://cloud.google.com/iam/docs/workload-identity-federation),
47
+ [workforce identity federation](https://cloud.google.com/iam/docs/workforce-identity-federation), or a
48
+ [service account key](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-key).
80
49
 
81
- ### Configuration
50
+ Note: Service account keys are a security risk if not managed correctly. You should
51
+ [choose a more secure alternative to service account keys](https://cloud.google.com/docs/authentication#auth-decision-tree)
52
+ whenever possible.
82
53
 
83
- The path to the **Credentials JSON** file can be configured instead of storing
84
- it in an environment variable. Either on an individual client initialization:
54
+ To configure a credentials file for an individual client initialization:
85
55
 
86
56
  ```ruby
87
57
  require "google/cloud/beyond_corp"
88
58
 
89
59
  client = Google::Cloud::BeyondCorp::AppConnections.app_connections_service do |config|
90
- config.credentials = "path/to/keyfile.json"
60
+ config.credentials = "path/to/credentialfile.json"
91
61
  end
92
62
  ```
93
63
 
94
- Or globally for all clients:
64
+ To configure a credentials file globally for all clients:
95
65
 
96
66
  ```ruby
97
67
  require "google/cloud/beyond_corp"
98
68
 
99
69
  Google::Cloud::BeyondCorp::AppConnections.configure do |config|
100
- config.credentials = "path/to/keyfile.json"
70
+ config.credentials = "path/to/credentialfile.json"
101
71
  end
102
72
 
103
73
  client = Google::Cloud::BeyondCorp::AppConnections.app_connections_service
104
74
  ```
105
75
 
106
- ### Cloud SDK
76
+ ### Environment Variables
107
77
 
108
- This option allows for an easy way to authenticate during development. If
109
- credentials are not provided in code or in environment variables, then Cloud SDK
110
- credentials are discovered.
78
+ You can also use an environment variable to provide a JSON credentials file.
79
+ The environment variable can contain a path to the credentials file or, for
80
+ environments such as Docker containers where writing files is not encouraged,
81
+ you can include the credentials file itself.
111
82
 
112
- To configure your system for this, simply:
83
+ The JSON file can contain credentials created for
84
+ [workload identity federation](https://cloud.google.com/iam/docs/workload-identity-federation),
85
+ [workforce identity federation](https://cloud.google.com/iam/docs/workforce-identity-federation), or a
86
+ [service account key](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-key).
113
87
 
114
- 1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
115
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
116
- 3. Write code as if already authenticated.
88
+ Note: Service account keys are a security risk if not managed correctly. You should
89
+ [choose a more secure alternative to service account keys](https://cloud.google.com/docs/authentication#auth-decision-tree)
90
+ whenever possible.
91
+
92
+ The environment variables that google-cloud-beyond_corp
93
+ checks for credentials are:
117
94
 
118
- **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
119
- *should* only be used during development.
95
+ * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
96
+ * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
120
97
 
121
- ## Creating a Service Account
98
+ ```ruby
99
+ require "google/cloud/beyond_corp"
122
100
 
123
- Google Cloud requires **Service Account Credentials** to
124
- connect to the APIs. You will use the **JSON key file** to
125
- connect to most services with google-cloud-beyond_corp.
101
+ ENV["GOOGLE_APPLICATION_CREDENTIALS"] = "path/to/credentialfile.json"
126
102
 
127
- If you are not running this client within
128
- [Google Cloud Platform environments](#google-cloud-platform-environments), you
129
- need a Google Developers service account.
103
+ client = Google::Cloud::BeyondCorp::AppConnections.app_connections_service
104
+ ```
130
105
 
131
- 1. Visit the [Google Cloud Console](https://console.cloud.google.com/project).
132
- 2. Create a new project or click on an existing project.
133
- 3. Activate the menu in the upper left and select **APIs & Services**. From
134
- here, you will enable the APIs that your application requires.
106
+ ### Local ADC file
135
107
 
136
- *Note: You may need to enable billing in order to use these services.*
108
+ You can set up a local ADC file with your user credentials for authentication during
109
+ development. If credentials are not provided in code or in environment variables,
110
+ then the local ADC credentials are discovered.
137
111
 
138
- 4. Select **Credentials** from the side navigation.
112
+ Follow the steps in [Quickstart](#quickstart) to set up a local ADC file.
139
113
 
140
- Find the "Create credentials" drop down near the top of the page, and select
141
- "Service account" to be guided through downloading a new JSON key file.
114
+ ### Google Cloud Platform environments
142
115
 
143
- If you want to re-use an existing service account, you can easily generate a
144
- new key file. Just select the account you wish to re-use, click the pencil
145
- tool on the right side to edit the service account, select the **Keys** tab,
146
- and then select **Add Key**.
116
+ When running on Google Cloud Platform (GCP), including Google Compute Engine
117
+ (GCE), Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud
118
+ Functions (GCF) and Cloud Run, credentials are retrieved from the attached
119
+ service account automatically. Code should be written as if already authenticated.
147
120
 
148
- The key file you download will be used by this library to authenticate API
149
- requests and should be stored in a secure location.
121
+ For more information, see
122
+ [Set up ADC for Google Cloud services](https://cloud.google.com/docs/authentication/provide-credentials-adc#attached-sa).
data/README.md CHANGED
@@ -16,11 +16,11 @@ for this library, google-cloud-beyond_corp, to see the convenience methods for
16
16
  constructing client objects. Reference documentation for the client objects
17
17
  themselves can be found in the client library documentation for the versioned
18
18
  client gems:
19
- [google-cloud-beyond_corp-app_connections-v1](https://googleapis.dev/ruby/google-cloud-beyond_corp-app_connections-v1/latest),
20
- [google-cloud-beyond_corp-app_connectors-v1](https://googleapis.dev/ruby/google-cloud-beyond_corp-app_connectors-v1/latest),
21
- [google-cloud-beyond_corp-app_gateways-v1](https://googleapis.dev/ruby/google-cloud-beyond_corp-app_gateways-v1/latest),
22
- [google-cloud-beyond_corp-client_connector_services-v1](https://googleapis.dev/ruby/google-cloud-beyond_corp-client_connector_services-v1/latest),
23
- [google-cloud-beyond_corp-client_gateways-v1](https://googleapis.dev/ruby/google-cloud-beyond_corp-client_gateways-v1/latest).
19
+ [google-cloud-beyond_corp-app_connections-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-app_connections-v1/latest),
20
+ [google-cloud-beyond_corp-app_connectors-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-app_connectors-v1/latest),
21
+ [google-cloud-beyond_corp-app_gateways-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-app_gateways-v1/latest),
22
+ [google-cloud-beyond_corp-client_connector_services-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-client_connector_services-v1/latest),
23
+ [google-cloud-beyond_corp-client_gateways-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-client_gateways-v1/latest).
24
24
 
25
25
  See also the [Product Documentation](https://cloud.google.com/beyondcorp/)
26
26
  for more usage information.
@@ -41,8 +41,8 @@ In order to use this library, you first need to go through the following steps:
41
41
  ## Enabling Logging
42
42
 
43
43
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
44
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
45
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
44
+ The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
45
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
46
46
  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)
47
47
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
48
48
 
@@ -29,7 +29,7 @@ require "google/cloud/config"
29
29
 
30
30
  # Set the default configuration
31
31
  ::Google::Cloud.configure.add_config! :beyond_corp_app_connections do |config|
32
- config.add_field! :endpoint, "beyondcorp.googleapis.com", match: ::String
32
+ config.add_field! :endpoint, nil, match: ::String
33
33
  config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
34
34
  config.add_field! :scope, nil, match: [::Array, ::String]
35
35
  config.add_field! :lib_name, nil, match: ::String
@@ -39,6 +39,7 @@ require "google/cloud/config"
39
39
  config.add_field! :metadata, nil, match: ::Hash
40
40
  config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
41
41
  config.add_field! :quota_project, nil, match: ::String
42
+ config.add_field! :universe_domain, nil, match: ::String
42
43
  end
43
44
 
44
45
  module Google
@@ -49,21 +50,21 @@ module Google
49
50
  # Create a new client object for AppConnectionsService.
50
51
  #
51
52
  # By default, this returns an instance of
52
- # [Google::Cloud::BeyondCorp::AppConnections::V1::AppConnectionsService::Client](https://googleapis.dev/ruby/google-cloud-beyond_corp-app_connections-v1/latest/Google/Cloud/BeyondCorp/AppConnections/V1/AppConnectionsService/Client.html)
53
- # for version V1 of the API.
54
- # However, you can specify specify a different API version by passing it in the
53
+ # [Google::Cloud::BeyondCorp::AppConnections::V1::AppConnectionsService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-app_connections-v1/latest/Google-Cloud-BeyondCorp-AppConnections-V1-AppConnectionsService-Client)
54
+ # for a gRPC client for version V1 of the API.
55
+ # However, you can specify a different API version by passing it in the
55
56
  # `version` parameter. If the AppConnectionsService service is
56
57
  # supported by that API version, and the corresponding gem is available, the
57
58
  # appropriate versioned client will be returned.
58
59
  #
59
60
  # ## About AppConnectionsService
60
61
  #
61
- # ## API Overview
62
+ # API Overview:
62
63
  #
63
64
  # The `beyondcorp.googleapis.com` service implements the Google Cloud
64
65
  # BeyondCorp API.
65
66
  #
66
- # ## Data Model
67
+ # Data Model:
67
68
  #
68
69
  # The AppConnectionsService exposes the following resources:
69
70
  #
@@ -75,7 +76,7 @@ module Google
75
76
  #
76
77
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
77
78
  # Defaults to `:v1`.
78
- # @return [AppConnectionsService::Client] A client object for the specified version.
79
+ # @return [::Object] A client object for the specified version.
79
80
  #
80
81
  def self.app_connections_service version: :v1, &block
81
82
  require "google/cloud/beyond_corp/app_connections/#{version.to_s.downcase}"
@@ -84,8 +85,8 @@ module Google
84
85
  .constants
85
86
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
86
87
  .first
87
- package_module = Google::Cloud::BeyondCorp::AppConnections.const_get package_name
88
- package_module.const_get(:AppConnectionsService).const_get(:Client).new(&block)
88
+ service_module = Google::Cloud::BeyondCorp::AppConnections.const_get(package_name).const_get(:AppConnectionsService)
89
+ service_module.const_get(:Client).new(&block)
89
90
  end
90
91
 
91
92
  ##
@@ -105,7 +106,7 @@ module Google
105
106
  # * `timeout` (*type:* `Numeric`) -
106
107
  # Default timeout in seconds.
107
108
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
108
- # Additional gRPC headers to be sent with the call.
109
+ # Additional headers to be sent with the call.
109
110
  # * `retry_policy` (*type:* `Hash`) -
110
111
  # The retry policy. The value is a hash with the following keys:
111
112
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
@@ -29,7 +29,7 @@ require "google/cloud/config"
29
29
 
30
30
  # Set the default configuration
31
31
  ::Google::Cloud.configure.add_config! :beyond_corp_app_connectors do |config|
32
- config.add_field! :endpoint, "beyondcorp.googleapis.com", match: ::String
32
+ config.add_field! :endpoint, nil, match: ::String
33
33
  config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
34
34
  config.add_field! :scope, nil, match: [::Array, ::String]
35
35
  config.add_field! :lib_name, nil, match: ::String
@@ -39,6 +39,7 @@ require "google/cloud/config"
39
39
  config.add_field! :metadata, nil, match: ::Hash
40
40
  config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
41
41
  config.add_field! :quota_project, nil, match: ::String
42
+ config.add_field! :universe_domain, nil, match: ::String
42
43
  end
43
44
 
44
45
  module Google
@@ -49,21 +50,21 @@ module Google
49
50
  # Create a new client object for AppConnectorsService.
50
51
  #
51
52
  # By default, this returns an instance of
52
- # [Google::Cloud::BeyondCorp::AppConnectors::V1::AppConnectorsService::Client](https://googleapis.dev/ruby/google-cloud-beyond_corp-app_connectors-v1/latest/Google/Cloud/BeyondCorp/AppConnectors/V1/AppConnectorsService/Client.html)
53
- # for version V1 of the API.
54
- # However, you can specify specify a different API version by passing it in the
53
+ # [Google::Cloud::BeyondCorp::AppConnectors::V1::AppConnectorsService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-app_connectors-v1/latest/Google-Cloud-BeyondCorp-AppConnectors-V1-AppConnectorsService-Client)
54
+ # for a gRPC client for version V1 of the API.
55
+ # However, you can specify a different API version by passing it in the
55
56
  # `version` parameter. If the AppConnectorsService service is
56
57
  # supported by that API version, and the corresponding gem is available, the
57
58
  # appropriate versioned client will be returned.
58
59
  #
59
60
  # ## About AppConnectorsService
60
61
  #
61
- # ## API Overview
62
+ # API Overview:
62
63
  #
63
64
  # The `beyondcorp.googleapis.com` service implements the Google Cloud
64
65
  # BeyondCorp API.
65
66
  #
66
- # ## Data Model
67
+ # Data Model:
67
68
  #
68
69
  # The AppConnectorsService exposes the following resource:
69
70
  #
@@ -75,7 +76,7 @@ module Google
75
76
  #
76
77
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
77
78
  # Defaults to `:v1`.
78
- # @return [AppConnectorsService::Client] A client object for the specified version.
79
+ # @return [::Object] A client object for the specified version.
79
80
  #
80
81
  def self.app_connectors_service version: :v1, &block
81
82
  require "google/cloud/beyond_corp/app_connectors/#{version.to_s.downcase}"
@@ -84,8 +85,8 @@ module Google
84
85
  .constants
85
86
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
86
87
  .first
87
- package_module = Google::Cloud::BeyondCorp::AppConnectors.const_get package_name
88
- package_module.const_get(:AppConnectorsService).const_get(:Client).new(&block)
88
+ service_module = Google::Cloud::BeyondCorp::AppConnectors.const_get(package_name).const_get(:AppConnectorsService)
89
+ service_module.const_get(:Client).new(&block)
89
90
  end
90
91
 
91
92
  ##
@@ -105,7 +106,7 @@ module Google
105
106
  # * `timeout` (*type:* `Numeric`) -
106
107
  # Default timeout in seconds.
107
108
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
108
- # Additional gRPC headers to be sent with the call.
109
+ # Additional headers to be sent with the call.
109
110
  # * `retry_policy` (*type:* `Hash`) -
110
111
  # The retry policy. The value is a hash with the following keys:
111
112
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
@@ -29,7 +29,7 @@ require "google/cloud/config"
29
29
 
30
30
  # Set the default configuration
31
31
  ::Google::Cloud.configure.add_config! :beyond_corp_app_gateways do |config|
32
- config.add_field! :endpoint, "beyondcorp.googleapis.com", match: ::String
32
+ config.add_field! :endpoint, nil, match: ::String
33
33
  config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
34
34
  config.add_field! :scope, nil, match: [::Array, ::String]
35
35
  config.add_field! :lib_name, nil, match: ::String
@@ -39,6 +39,7 @@ require "google/cloud/config"
39
39
  config.add_field! :metadata, nil, match: ::Hash
40
40
  config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
41
41
  config.add_field! :quota_project, nil, match: ::String
42
+ config.add_field! :universe_domain, nil, match: ::String
42
43
  end
43
44
 
44
45
  module Google
@@ -49,21 +50,21 @@ module Google
49
50
  # Create a new client object for AppGatewaysService.
50
51
  #
51
52
  # By default, this returns an instance of
52
- # [Google::Cloud::BeyondCorp::AppGateways::V1::AppGatewaysService::Client](https://googleapis.dev/ruby/google-cloud-beyond_corp-app_gateways-v1/latest/Google/Cloud/BeyondCorp/AppGateways/V1/AppGatewaysService/Client.html)
53
- # for version V1 of the API.
54
- # However, you can specify specify a different API version by passing it in the
53
+ # [Google::Cloud::BeyondCorp::AppGateways::V1::AppGatewaysService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-app_gateways-v1/latest/Google-Cloud-BeyondCorp-AppGateways-V1-AppGatewaysService-Client)
54
+ # for a gRPC client for version V1 of the API.
55
+ # However, you can specify a different API version by passing it in the
55
56
  # `version` parameter. If the AppGatewaysService service is
56
57
  # supported by that API version, and the corresponding gem is available, the
57
58
  # appropriate versioned client will be returned.
58
59
  #
59
60
  # ## About AppGatewaysService
60
61
  #
61
- # ## API Overview
62
+ # API Overview:
62
63
  #
63
64
  # The `beyondcorp.googleapis.com` service implements the Google Cloud
64
65
  # BeyondCorp API.
65
66
  #
66
- # ## Data Model
67
+ # Data Model:
67
68
  #
68
69
  # The AppGatewaysService exposes the following resources:
69
70
  #
@@ -75,7 +76,7 @@ module Google
75
76
  #
76
77
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
77
78
  # Defaults to `:v1`.
78
- # @return [AppGatewaysService::Client] A client object for the specified version.
79
+ # @return [::Object] A client object for the specified version.
79
80
  #
80
81
  def self.app_gateways_service version: :v1, &block
81
82
  require "google/cloud/beyond_corp/app_gateways/#{version.to_s.downcase}"
@@ -84,8 +85,8 @@ module Google
84
85
  .constants
85
86
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
86
87
  .first
87
- package_module = Google::Cloud::BeyondCorp::AppGateways.const_get package_name
88
- package_module.const_get(:AppGatewaysService).const_get(:Client).new(&block)
88
+ service_module = Google::Cloud::BeyondCorp::AppGateways.const_get(package_name).const_get(:AppGatewaysService)
89
+ service_module.const_get(:Client).new(&block)
89
90
  end
90
91
 
91
92
  ##
@@ -105,7 +106,7 @@ module Google
105
106
  # * `timeout` (*type:* `Numeric`) -
106
107
  # Default timeout in seconds.
107
108
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
108
- # Additional gRPC headers to be sent with the call.
109
+ # Additional headers to be sent with the call.
109
110
  # * `retry_policy` (*type:* `Hash`) -
110
111
  # The retry policy. The value is a hash with the following keys:
111
112
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
@@ -29,7 +29,7 @@ require "google/cloud/config"
29
29
 
30
30
  # Set the default configuration
31
31
  ::Google::Cloud.configure.add_config! :beyond_corp_client_connector_services do |config|
32
- config.add_field! :endpoint, "beyondcorp.googleapis.com", match: ::String
32
+ config.add_field! :endpoint, nil, match: ::String
33
33
  config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
34
34
  config.add_field! :scope, nil, match: [::Array, ::String]
35
35
  config.add_field! :lib_name, nil, match: ::String
@@ -39,6 +39,7 @@ require "google/cloud/config"
39
39
  config.add_field! :metadata, nil, match: ::Hash
40
40
  config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
41
41
  config.add_field! :quota_project, nil, match: ::String
42
+ config.add_field! :universe_domain, nil, match: ::String
42
43
  end
43
44
 
44
45
  module Google
@@ -49,21 +50,21 @@ module Google
49
50
  # Create a new client object for ClientConnectorServicesService.
50
51
  #
51
52
  # By default, this returns an instance of
52
- # [Google::Cloud::BeyondCorp::ClientConnectorServices::V1::ClientConnectorServicesService::Client](https://googleapis.dev/ruby/google-cloud-beyond_corp-client_connector_services-v1/latest/Google/Cloud/BeyondCorp/ClientConnectorServices/V1/ClientConnectorServicesService/Client.html)
53
- # for version V1 of the API.
54
- # However, you can specify specify a different API version by passing it in the
53
+ # [Google::Cloud::BeyondCorp::ClientConnectorServices::V1::ClientConnectorServicesService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-client_connector_services-v1/latest/Google-Cloud-BeyondCorp-ClientConnectorServices-V1-ClientConnectorServicesService-Client)
54
+ # for a gRPC client for version V1 of the API.
55
+ # However, you can specify a different API version by passing it in the
55
56
  # `version` parameter. If the ClientConnectorServicesService service is
56
57
  # supported by that API version, and the corresponding gem is available, the
57
58
  # appropriate versioned client will be returned.
58
59
  #
59
60
  # ## About ClientConnectorServicesService
60
61
  #
61
- # ## API Overview
62
+ # API Overview:
62
63
  #
63
64
  # The `beyondcorp.googleapis.com` service implements the Google Cloud
64
65
  # BeyondCorp API.
65
66
  #
66
- # ## Data Model
67
+ # Data Model:
67
68
  #
68
69
  # The ClientConnectorServicesService exposes the following resources:
69
70
  #
@@ -72,7 +73,7 @@ module Google
72
73
  #
73
74
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
74
75
  # Defaults to `:v1`.
75
- # @return [ClientConnectorServicesService::Client] A client object for the specified version.
76
+ # @return [::Object] A client object for the specified version.
76
77
  #
77
78
  def self.client_connector_services_service version: :v1, &block
78
79
  require "google/cloud/beyond_corp/client_connector_services/#{version.to_s.downcase}"
@@ -81,8 +82,8 @@ module Google
81
82
  .constants
82
83
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
83
84
  .first
84
- package_module = Google::Cloud::BeyondCorp::ClientConnectorServices.const_get package_name
85
- package_module.const_get(:ClientConnectorServicesService).const_get(:Client).new(&block)
85
+ service_module = Google::Cloud::BeyondCorp::ClientConnectorServices.const_get(package_name).const_get(:ClientConnectorServicesService)
86
+ service_module.const_get(:Client).new(&block)
86
87
  end
87
88
 
88
89
  ##
@@ -102,7 +103,7 @@ module Google
102
103
  # * `timeout` (*type:* `Numeric`) -
103
104
  # Default timeout in seconds.
104
105
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
105
- # Additional gRPC headers to be sent with the call.
106
+ # Additional headers to be sent with the call.
106
107
  # * `retry_policy` (*type:* `Hash`) -
107
108
  # The retry policy. The value is a hash with the following keys:
108
109
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
@@ -29,7 +29,7 @@ require "google/cloud/config"
29
29
 
30
30
  # Set the default configuration
31
31
  ::Google::Cloud.configure.add_config! :beyond_corp_client_gateways do |config|
32
- config.add_field! :endpoint, "beyondcorp.googleapis.com", match: ::String
32
+ config.add_field! :endpoint, nil, match: ::String
33
33
  config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
34
34
  config.add_field! :scope, nil, match: [::Array, ::String]
35
35
  config.add_field! :lib_name, nil, match: ::String
@@ -39,6 +39,7 @@ require "google/cloud/config"
39
39
  config.add_field! :metadata, nil, match: ::Hash
40
40
  config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
41
41
  config.add_field! :quota_project, nil, match: ::String
42
+ config.add_field! :universe_domain, nil, match: ::String
42
43
  end
43
44
 
44
45
  module Google
@@ -49,21 +50,21 @@ module Google
49
50
  # Create a new client object for ClientGatewaysService.
50
51
  #
51
52
  # By default, this returns an instance of
52
- # [Google::Cloud::BeyondCorp::ClientGateways::V1::ClientGatewaysService::Client](https://googleapis.dev/ruby/google-cloud-beyond_corp-client_gateways-v1/latest/Google/Cloud/BeyondCorp/ClientGateways/V1/ClientGatewaysService/Client.html)
53
- # for version V1 of the API.
54
- # However, you can specify specify a different API version by passing it in the
53
+ # [Google::Cloud::BeyondCorp::ClientGateways::V1::ClientGatewaysService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-beyond_corp-client_gateways-v1/latest/Google-Cloud-BeyondCorp-ClientGateways-V1-ClientGatewaysService-Client)
54
+ # for a gRPC client for version V1 of the API.
55
+ # However, you can specify a different API version by passing it in the
55
56
  # `version` parameter. If the ClientGatewaysService service is
56
57
  # supported by that API version, and the corresponding gem is available, the
57
58
  # appropriate versioned client will be returned.
58
59
  #
59
60
  # ## About ClientGatewaysService
60
61
  #
61
- # ## API Overview
62
+ # API Overview:
62
63
  #
63
64
  # The `beyondcorp.googleapis.com` service implements the Google Cloud
64
65
  # BeyondCorp API.
65
66
  #
66
- # ## Data Model
67
+ # Data Model:
67
68
  #
68
69
  # The ClientGatewaysService exposes the following resources:
69
70
  #
@@ -72,7 +73,7 @@ module Google
72
73
  #
73
74
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
74
75
  # Defaults to `:v1`.
75
- # @return [ClientGatewaysService::Client] A client object for the specified version.
76
+ # @return [::Object] A client object for the specified version.
76
77
  #
77
78
  def self.client_gateways_service version: :v1, &block
78
79
  require "google/cloud/beyond_corp/client_gateways/#{version.to_s.downcase}"
@@ -81,8 +82,8 @@ module Google
81
82
  .constants
82
83
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
83
84
  .first
84
- package_module = Google::Cloud::BeyondCorp::ClientGateways.const_get package_name
85
- package_module.const_get(:ClientGatewaysService).const_get(:Client).new(&block)
85
+ service_module = Google::Cloud::BeyondCorp::ClientGateways.const_get(package_name).const_get(:ClientGatewaysService)
86
+ service_module.const_get(:Client).new(&block)
86
87
  end
87
88
 
88
89
  ##
@@ -102,7 +103,7 @@ module Google
102
103
  # * `timeout` (*type:* `Numeric`) -
103
104
  # Default timeout in seconds.
104
105
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
105
- # Additional gRPC headers to be sent with the call.
106
+ # Additional headers to be sent with the call.
106
107
  # * `retry_policy` (*type:* `Hash`) -
107
108
  # The retry policy. The value is a hash with the following keys:
108
109
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
@@ -17,7 +17,7 @@
17
17
  module Google
18
18
  module Cloud
19
19
  module BeyondCorp
20
- VERSION = "0.1.0"
20
+ VERSION = "1.1.0"
21
21
  end
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-beyond_corp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.1.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: 2022-08-09 00:00:00.000000000 Z
11
+ date: 2024-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-beyond_corp-app_connections-v1
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.0'
19
+ version: '0.4'
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.0'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: '0.0'
53
+ version: '0.4'
54
54
  - - "<"
55
55
  - !ruby/object:Gem::Version
56
56
  version: 2.a
@@ -60,7 +60,7 @@ dependencies:
60
60
  requirements:
61
61
  - - ">="
62
62
  - !ruby/object:Gem::Version
63
- version: '0.0'
63
+ version: '0.4'
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
66
  version: 2.a
@@ -70,7 +70,7 @@ dependencies:
70
70
  requirements:
71
71
  - - ">="
72
72
  - !ruby/object:Gem::Version
73
- version: '0.0'
73
+ version: '0.4'
74
74
  - - "<"
75
75
  - !ruby/object:Gem::Version
76
76
  version: 2.a
@@ -80,7 +80,7 @@ dependencies:
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- version: '0.0'
83
+ version: '0.4'
84
84
  - - "<"
85
85
  - !ruby/object:Gem::Version
86
86
  version: 2.a
@@ -90,7 +90,7 @@ dependencies:
90
90
  requirements:
91
91
  - - ">="
92
92
  - !ruby/object:Gem::Version
93
- version: '0.0'
93
+ version: '0.4'
94
94
  - - "<"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 2.a
@@ -100,7 +100,7 @@ dependencies:
100
100
  requirements:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: '0.0'
103
+ version: '0.4'
104
104
  - - "<"
105
105
  - !ruby/object:Gem::Version
106
106
  version: 2.a
@@ -110,7 +110,7 @@ dependencies:
110
110
  requirements:
111
111
  - - ">="
112
112
  - !ruby/object:Gem::Version
113
- version: '0.0'
113
+ version: '0.4'
114
114
  - - "<"
115
115
  - !ruby/object:Gem::Version
116
116
  version: 2.a
@@ -120,7 +120,7 @@ dependencies:
120
120
  requirements:
121
121
  - - ">="
122
122
  - !ruby/object:Gem::Version
123
- version: '0.0'
123
+ version: '0.4'
124
124
  - - "<"
125
125
  - !ruby/object:Gem::Version
126
126
  version: 2.a
@@ -281,7 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
281
281
  - !ruby/object:Gem::Version
282
282
  version: '0'
283
283
  requirements: []
284
- rubygems_version: 3.3.14
284
+ rubygems_version: 3.5.3
285
285
  signing_key:
286
286
  specification_version: 4
287
287
  summary: API client library for the BeyondCorp API