Reference documentation and code samples for the Identity-Aware Proxy V1 API class Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.
Client for the IdentityAwareProxyAdminService service.
APIs for Identity-Aware Proxy Admin configurations.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the IdentityAwareProxyAdminService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all IdentityAwareProxyAdminService clients ::Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the IdentityAwareProxyAdminService Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_tunnel_dest_group
def create_tunnel_dest_group(request, options = nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
def create_tunnel_dest_group(parent: nil, tunnel_dest_group: nil, tunnel_dest_group_id: nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
Creates a new TunnelDestGroup.
def create_tunnel_dest_group(request, options = nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
create_tunnel_dest_group
via a request object, either of type
CreateTunnelDestGroupRequest or an equivalent Hash.
- request (::Google::Cloud::Iap::V1::CreateTunnelDestGroupRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_tunnel_dest_group(parent: nil, tunnel_dest_group: nil, tunnel_dest_group_id: nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
create_tunnel_dest_group
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Google Cloud Project ID and location.
In the following format:
projects/{project_number/id}/iap_tunnel/locations/{location}
. - tunnel_dest_group (::Google::Cloud::Iap::V1::TunnelDestGroup, ::Hash) — Required. The TunnelDestGroup to create.
-
tunnel_dest_group_id (::String) — Required. The ID to use for the TunnelDestGroup, which becomes the final
component of the resource name.
This value must be 4-63 characters, and valid characters are
[a-z]-
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Iap::V1::TunnelDestGroup)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Iap::V1::CreateTunnelDestGroupRequest.new # Call the create_tunnel_dest_group method. result = client.create_tunnel_dest_group request # The returned object is of type Google::Cloud::Iap::V1::TunnelDestGroup. p result
#delete_tunnel_dest_group
def delete_tunnel_dest_group(request, options = nil) -> ::Google::Protobuf::Empty
def delete_tunnel_dest_group(name: nil) -> ::Google::Protobuf::Empty
Deletes a TunnelDestGroup.
def delete_tunnel_dest_group(request, options = nil) -> ::Google::Protobuf::Empty
delete_tunnel_dest_group
via a request object, either of type
DeleteTunnelDestGroupRequest or an equivalent Hash.
- request (::Google::Cloud::Iap::V1::DeleteTunnelDestGroupRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_tunnel_dest_group(name: nil) -> ::Google::Protobuf::Empty
delete_tunnel_dest_group
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. Name of the TunnelDestGroup to delete.
In the following format:
projects/{project_number/id}/iap_tunnel/locations/{location}/destGroups/{dest_group}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Protobuf::Empty)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Iap::V1::DeleteTunnelDestGroupRequest.new # Call the delete_tunnel_dest_group method. result = client.delete_tunnel_dest_group request # The returned object is of type Google::Protobuf::Empty. p result
#get_iam_policy
def get_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policy
def get_iam_policy(resource: nil, options: nil) -> ::Google::Iam::V1::Policy
Gets the access control policy for an Identity-Aware Proxy protected resource. More information about managing access via IAP can be found at: https://cloud.google.com/iap/docs/managing-access#managing_access_via_the_api
def get_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policy
get_iam_policy
via a request object, either of type
Iam::V1::GetIamPolicyRequest or an equivalent Hash.
- request (::Google::Iam::V1::GetIamPolicyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_iam_policy(resource: nil, options: nil) -> ::Google::Iam::V1::Policy
get_iam_policy
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- resource (::String) — REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.
-
options (::Google::Iam::V1::GetPolicyOptions, ::Hash) — OPTIONAL: A
GetPolicyOptions
object for specifying options toGetIamPolicy
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Iam::V1::Policy)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Iam::V1::GetIamPolicyRequest.new # Call the get_iam_policy method. result = client.get_iam_policy request # The returned object is of type Google::Iam::V1::Policy. p result
#get_iap_settings
def get_iap_settings(request, options = nil) -> ::Google::Cloud::Iap::V1::IapSettings
def get_iap_settings(name: nil) -> ::Google::Cloud::Iap::V1::IapSettings
Gets the IAP settings on a particular IAP protected resource.
def get_iap_settings(request, options = nil) -> ::Google::Cloud::Iap::V1::IapSettings
get_iap_settings
via a request object, either of type
GetIapSettingsRequest or an equivalent Hash.
- request (::Google::Cloud::Iap::V1::GetIapSettingsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_iap_settings(name: nil) -> ::Google::Cloud::Iap::V1::IapSettings
get_iap_settings
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The resource name for which to retrieve the settings.
Authorization: Requires the
getSettings
permission for the associated resource.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Iap::V1::IapSettings)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Iap::V1::GetIapSettingsRequest.new # Call the get_iap_settings method. result = client.get_iap_settings request # The returned object is of type Google::Cloud::Iap::V1::IapSettings. p result
#get_tunnel_dest_group
def get_tunnel_dest_group(request, options = nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
def get_tunnel_dest_group(name: nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
Retrieves an existing TunnelDestGroup.
def get_tunnel_dest_group(request, options = nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
get_tunnel_dest_group
via a request object, either of type
GetTunnelDestGroupRequest or an equivalent Hash.
- request (::Google::Cloud::Iap::V1::GetTunnelDestGroupRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_tunnel_dest_group(name: nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
get_tunnel_dest_group
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. Name of the TunnelDestGroup to be fetched.
In the following format:
projects/{project_number/id}/iap_tunnel/locations/{location}/destGroups/{dest_group}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Iap::V1::TunnelDestGroup)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Iap::V1::GetTunnelDestGroupRequest.new # Call the get_tunnel_dest_group method. result = client.get_tunnel_dest_group request # The returned object is of type Google::Cloud::Iap::V1::TunnelDestGroup. p result
#initialize
def initialize() { |config| ... } -> Client
Create a new IdentityAwareProxyAdminService client object.
- (config) — Configure the IdentityAwareProxyAdminService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new do |config| config.timeout = 10.0 end
#list_tunnel_dest_groups
def list_tunnel_dest_groups(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Iap::V1::TunnelDestGroup>
def list_tunnel_dest_groups(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Iap::V1::TunnelDestGroup>
Lists the existing TunnelDestGroups. To group across all locations, use a
-
as the location ID. For example:
/v1/projects/123/iap_tunnel/locations/-/destGroups
def list_tunnel_dest_groups(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Iap::V1::TunnelDestGroup>
list_tunnel_dest_groups
via a request object, either of type
ListTunnelDestGroupsRequest or an equivalent Hash.
- request (::Google::Cloud::Iap::V1::ListTunnelDestGroupsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_tunnel_dest_groups(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Iap::V1::TunnelDestGroup>
list_tunnel_dest_groups
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Google Cloud Project ID and location.
In the following format:
projects/{project_number/id}/iap_tunnel/locations/{location}
. A-
can be used for the location to group across all locations. - page_size (::Integer) — The maximum number of groups to return. The service might return fewer than this value. If unspecified, at most 100 groups are returned. The maximum value is 1000; values above 1000 are coerced to 1000.
-
page_token (::String) — A page token, received from a previous
ListTunnelDestGroups
call. Provide this to retrieve the subsequent page.When paginating, all other parameters provided to
ListTunnelDestGroups
must match the call that provided the page token.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::Iap::V1::TunnelDestGroup>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::Iap::V1::TunnelDestGroup>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Iap::V1::ListTunnelDestGroupsRequest.new # Call the list_tunnel_dest_groups method. result = client.list_tunnel_dest_groups request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::Iap::V1::TunnelDestGroup. p item end
#set_iam_policy
def set_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policy
def set_iam_policy(resource: nil, policy: nil, update_mask: nil) -> ::Google::Iam::V1::Policy
Sets the access control policy for an Identity-Aware Proxy protected resource. Replaces any existing policy. More information about managing access via IAP can be found at: https://cloud.google.com/iap/docs/managing-access#managing_access_via_the_api
def set_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policy
set_iam_policy
via a request object, either of type
Iam::V1::SetIamPolicyRequest or an equivalent Hash.
- request (::Google::Iam::V1::SetIamPolicyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def set_iam_policy(resource: nil, policy: nil, update_mask: nil) -> ::Google::Iam::V1::Policy
set_iam_policy
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- resource (::String) — REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.
-
policy (::Google::Iam::V1::Policy, ::Hash) — REQUIRED: The complete policy to be applied to the
resource
. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them. -
update_mask (::Google::Protobuf::FieldMask, ::Hash) — OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only
the fields in the mask will be modified. If no mask is provided, the
following default mask is used:
paths: "bindings, etag"
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Iam::V1::Policy)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Iam::V1::SetIamPolicyRequest.new # Call the set_iam_policy method. result = client.set_iam_policy request # The returned object is of type Google::Iam::V1::Policy. p result
#test_iam_permissions
def test_iam_permissions(request, options = nil) -> ::Google::Iam::V1::TestIamPermissionsResponse
def test_iam_permissions(resource: nil, permissions: nil) -> ::Google::Iam::V1::TestIamPermissionsResponse
Returns permissions that a caller has on the Identity-Aware Proxy protected resource. More information about managing access via IAP can be found at: https://cloud.google.com/iap/docs/managing-access#managing_access_via_the_api
def test_iam_permissions(request, options = nil) -> ::Google::Iam::V1::TestIamPermissionsResponse
test_iam_permissions
via a request object, either of type
Iam::V1::TestIamPermissionsRequest or an equivalent Hash.
- request (::Google::Iam::V1::TestIamPermissionsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def test_iam_permissions(resource: nil, permissions: nil) -> ::Google::Iam::V1::TestIamPermissionsResponse
test_iam_permissions
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- resource (::String) — REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.
-
permissions (::Array<::String>) — The set of permissions to check for the
resource
. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Iam::V1::TestIamPermissionsResponse)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Iam::V1::TestIamPermissionsRequest.new # Call the test_iam_permissions method. result = client.test_iam_permissions request # The returned object is of type Google::Iam::V1::TestIamPermissionsResponse. p result
#update_iap_settings
def update_iap_settings(request, options = nil) -> ::Google::Cloud::Iap::V1::IapSettings
def update_iap_settings(iap_settings: nil, update_mask: nil) -> ::Google::Cloud::Iap::V1::IapSettings
Updates the IAP settings on a particular IAP protected resource. It
replaces all fields unless the update_mask
is set.
def update_iap_settings(request, options = nil) -> ::Google::Cloud::Iap::V1::IapSettings
update_iap_settings
via a request object, either of type
UpdateIapSettingsRequest or an equivalent Hash.
- request (::Google::Cloud::Iap::V1::UpdateIapSettingsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_iap_settings(iap_settings: nil, update_mask: nil) -> ::Google::Cloud::Iap::V1::IapSettings
update_iap_settings
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
iap_settings (::Google::Cloud::Iap::V1::IapSettings, ::Hash) — Required. The new values for the IAP settings to be updated.
Authorization: Requires the
updateSettings
permission for the associated resource. - update_mask (::Google::Protobuf::FieldMask, ::Hash) — The field mask specifying which IAP settings should be updated. If omitted, the all of the settings are updated. See https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Iap::V1::IapSettings)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Iap::V1::UpdateIapSettingsRequest.new # Call the update_iap_settings method. result = client.update_iap_settings request # The returned object is of type Google::Cloud::Iap::V1::IapSettings. p result
#update_tunnel_dest_group
def update_tunnel_dest_group(request, options = nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
def update_tunnel_dest_group(tunnel_dest_group: nil, update_mask: nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
Updates a TunnelDestGroup.
def update_tunnel_dest_group(request, options = nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
update_tunnel_dest_group
via a request object, either of type
UpdateTunnelDestGroupRequest or an equivalent Hash.
- request (::Google::Cloud::Iap::V1::UpdateTunnelDestGroupRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_tunnel_dest_group(tunnel_dest_group: nil, update_mask: nil) -> ::Google::Cloud::Iap::V1::TunnelDestGroup
update_tunnel_dest_group
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- tunnel_dest_group (::Google::Cloud::Iap::V1::TunnelDestGroup, ::Hash) — Required. The new values for the TunnelDestGroup.
- update_mask (::Google::Protobuf::FieldMask, ::Hash) — A field mask that specifies which IAP settings to update. If omitted, then all of the settings are updated. See https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Iap::V1::TunnelDestGroup)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/iap/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Iap::V1::IdentityAwareProxyAdminService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Iap::V1::UpdateTunnelDestGroupRequest.new # Call the update_tunnel_dest_group method. result = client.update_tunnel_dest_group request # The returned object is of type Google::Cloud::Iap::V1::TunnelDestGroup. p result