google-cloud-iap-v1 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94b24a163c4899bea04018b754a8e7608ac9b76f46aa90fdf9abfe51236dcd09
4
- data.tar.gz: 85bbb86cb755e71d6d7e38321e6ab99e76e5922e2b961c8e9785571f71202cbf
3
+ metadata.gz: 30799e6c99fb52748b004150af9195057dbf27de4a221b331363b718cca899f4
4
+ data.tar.gz: 07f15deeda775976fe4aa0e415a807188c5a4acc3aab75ffc00fde98eadf3f3f
5
5
  SHA512:
6
- metadata.gz: '08fe520b545db3cd930465afc754495b84991d568ba68c7956685a035a606b67ea462b956b7f2148fd0a7ad97634357563d3917199dd50890b3ef68ed69eb0c2'
7
- data.tar.gz: f9f0006d122b9dc938596da66ae222cfef3cc1ecd1beab0b3e8e005b4564c586361b43ddfd3e83c7bae6b725dac8a83ae58596a9e64f9dfb8beb2f3f2607bfde
6
+ metadata.gz: 438ed7c5f0409e4aec95b01fbcbef2af71182167c3663bef7d683b93c2fef2a0366bda1de0e91263ad3d029fde08a895fbc6d6ad2827ba0bdff0b2cfffc70252
7
+ data.tar.gz: ebb7b45ed91731d30e30e276b584e9f5c97128d8163d9b5cdeb0135c1adc5a5264eef9533ad4313fb97d303a498f80bd5bf255723d4611646bdee0438f3beb4f
data/AUTHENTICATION.md CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
114
114
  To configure your system for this, simply:
115
115
 
116
116
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
117
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
117
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
118
118
  3. Write code as if already authenticated.
119
119
 
120
120
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Ruby Client for the Identity-Aware Proxy V1 API
2
2
 
3
- API Client library for the Identity-Aware Proxy V1 API
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
 
@@ -46,7 +46,7 @@ for general usage information.
46
46
  ## Enabling Logging
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
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
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
50
  or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/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.
@@ -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
- # # iterate over all elements by calling #each, and the enumerable
674
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
676
+ # p item
679
677
  # end
680
678
  #
681
679
  def list_tunnel_dest_groups request, options = nil
@@ -745,11 +743,11 @@ module Google
745
743
  # @param tunnel_dest_group [::Google::Cloud::Iap::V1::TunnelDestGroup, ::Hash]
746
744
  # Required. The TunnelDestGroup to create.
747
745
  # @param tunnel_dest_group_id [::String]
748
- # Required. The ID to use for the TunnelDestGroup, which becomes the final component of
749
- # the resource name.
746
+ # Required. The ID to use for the TunnelDestGroup, which becomes the final
747
+ # component of the resource name.
750
748
  #
751
749
  # This value must be 4-63 characters, and valid characters
752
- # are `[a-z][0-9]-`.
750
+ # are `[a-z]-`.
753
751
  #
754
752
  # @yield [response, operation] Access the result along with the RPC operation
755
753
  # @yieldparam response [::Google::Cloud::Iap::V1::TunnelDestGroup]