google-cloud-iap-v1 0.5.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/google/cloud/iap/v1/identity_aware_proxy_admin_service/client.rb +11 -10
- data/lib/google/cloud/iap/v1/identity_aware_proxy_admin_service/rest/client.rb +1046 -0
- data/lib/google/cloud/iap/v1/identity_aware_proxy_admin_service/rest/service_stub.rb +644 -0
- data/lib/google/cloud/iap/v1/identity_aware_proxy_admin_service/rest.rb +52 -0
- data/lib/google/cloud/iap/v1/identity_aware_proxy_admin_service.rb +6 -0
- data/lib/google/cloud/iap/v1/identity_aware_proxy_o_auth_service/client.rb +6 -8
- data/lib/google/cloud/iap/v1/identity_aware_proxy_o_auth_service/rest/client.rb +872 -0
- data/lib/google/cloud/iap/v1/identity_aware_proxy_o_auth_service/rest/service_stub.rb +523 -0
- data/lib/google/cloud/iap/v1/identity_aware_proxy_o_auth_service/rest.rb +53 -0
- data/lib/google/cloud/iap/v1/identity_aware_proxy_o_auth_service.rb +6 -0
- data/lib/google/cloud/iap/v1/rest.rb +38 -0
- data/lib/google/cloud/iap/v1/service_pb.rb +1 -0
- data/lib/google/cloud/iap/v1/version.rb +1 -1
- data/lib/google/cloud/iap/v1.rb +5 -0
- data/proto_docs/google/cloud/iap/v1/service.rb +8 -2
- data/proto_docs/google/iam/v1/policy.rb +8 -4
- metadata +15 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6eb756be9921f742ff52de166d7e451d21d78c7be248d0231109cc10ca1a9e8
|
4
|
+
data.tar.gz: e656488697f21708f945991ef8c0dccfd27e2040e14546634c25a9e6ad892c16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d46873b5edf38bf82ccfcf6a18f33eab0f68547ca10c7280cd2b6c4b8d5528c67f6cb610fe2a1e950390c751d77fee9072fb4fe06d3929d7da39814b2b4333f
|
7
|
+
data.tar.gz: 10d3f19a80d973bec8eafb85f542482b19367b04c3142b9ec6b4c4c1ea40c9185bfd782ab17be5309663fb8c7ef7ad543fbfa03b6da31b69b585f8c790ce554c
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Identity-Aware Proxy V1 API
|
2
2
|
|
3
|
-
|
3
|
+
Controls access to cloud applications running on Google Cloud Platform.
|
4
4
|
|
5
5
|
IAP lets you establish a central authorization layer for applications accessed by HTTPS, so you can use an application-level access control model instead of relying on network-level firewalls.
|
6
6
|
|
@@ -47,7 +47,7 @@ for general usage information.
|
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
49
|
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
50
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
53
53
|
|
@@ -544,8 +544,11 @@ module Google
|
|
544
544
|
# resource.
|
545
545
|
# @param update_mask [::Google::Protobuf::FieldMask, ::Hash]
|
546
546
|
# The field mask specifying which IAP settings should be updated.
|
547
|
-
# If omitted,
|
548
|
-
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
547
|
+
# If omitted, then all of the settings are updated. See
|
548
|
+
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
|
549
|
+
#
|
550
|
+
# Note: All IAP reauth settings must always be set together, using the
|
551
|
+
# field mask: `iapSettings.accessSettings.reauthSettings`.
|
549
552
|
#
|
550
553
|
# @yield [response, operation] Access the result along with the RPC operation
|
551
554
|
# @yieldparam response [::Google::Cloud::Iap::V1::IapSettings]
|
@@ -669,13 +672,11 @@ module Google
|
|
669
672
|
# # Call the list_tunnel_dest_groups method.
|
670
673
|
# result = client.list_tunnel_dest_groups request
|
671
674
|
#
|
672
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
673
|
-
# #
|
674
|
-
#
|
675
|
-
# # methods are also available for managing paging directly.
|
676
|
-
# result.each do |response|
|
675
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
676
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
677
|
+
# result.each do |item|
|
677
678
|
# # Each element is of type ::Google::Cloud::Iap::V1::TunnelDestGroup.
|
678
|
-
# p
|
679
|
+
# p item
|
679
680
|
# end
|
680
681
|
#
|
681
682
|
def list_tunnel_dest_groups request, options = nil
|
@@ -1116,9 +1117,9 @@ module Google
|
|
1116
1117
|
# * (`String`) The path to a service account key file in JSON format
|
1117
1118
|
# * (`Hash`) A service account key as a Hash
|
1118
1119
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
1119
|
-
# (see the [googleauth docs](https://
|
1120
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
1120
1121
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1121
|
-
# (see the [signet docs](https://
|
1122
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1122
1123
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1123
1124
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1124
1125
|
# * (`nil`) indicating no credentials
|