google-cloud-iap-v1 0.5.0 → 0.6.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/README.md +1 -1
- data/lib/google/cloud/iap/v1/identity_aware_proxy_admin_service/client.rb +4 -6
- data/lib/google/cloud/iap/v1/identity_aware_proxy_admin_service/rest/client.rb +1043 -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 +4 -6
- 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/version.rb +1 -1
- data/lib/google/cloud/iap/v1.rb +5 -0
- 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: 30799e6c99fb52748b004150af9195057dbf27de4a221b331363b718cca899f4
|
4
|
+
data.tar.gz: 07f15deeda775976fe4aa0e415a807188c5a4acc3aab75ffc00fde98eadf3f3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 438ed7c5f0409e4aec95b01fbcbef2af71182167c3663bef7d683b93c2fef2a0366bda1de0e91263ad3d029fde08a895fbc6d6ad2827ba0bdff0b2cfffc70252
|
7
|
+
data.tar.gz: ebb7b45ed91731d30e30e276b584e9f5c97128d8163d9b5cdeb0135c1adc5a5264eef9533ad4313fb97d303a498f80bd5bf255723d4611646bdee0438f3beb4f
|
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
|
|
@@ -669,13 +669,11 @@ module Google
|
|
669
669
|
# # Call the list_tunnel_dest_groups method.
|
670
670
|
# result = client.list_tunnel_dest_groups request
|
671
671
|
#
|
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|
|
672
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
673
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
674
|
+
# result.each do |item|
|
677
675
|
# # Each element is of type ::Google::Cloud::Iap::V1::TunnelDestGroup.
|
678
|
-
# p
|
676
|
+
# p item
|
679
677
|
# end
|
680
678
|
#
|
681
679
|
def list_tunnel_dest_groups request, options = nil
|