google-apis-servicenetworking_v1beta 0.25.0 → 0.26.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: 801e8213fb11b42cb9c9f335b32ec1cc2504e9cd0a718f95a93d7fd2834757af
4
- data.tar.gz: 25a41d2338b6a307dc09cd8bf0877cc28d426cd2f80f0dc50974e227b4d497ec
3
+ metadata.gz: 68eeec2bd483ee5b5a03f44192b02899b1f205b5b3106cc3aa029d28ee048d31
4
+ data.tar.gz: 5c11cf7ed544deeaa62e48f22ea87dead4024366ce87c5a54475e404f6c37e3c
5
5
  SHA512:
6
- metadata.gz: 8b0a97e1828909ed9831993e5ab8f7f4eac04515d6b693f39135263706d0797ebaacf71a8c271a104b5db2524777f489d4fe0ec26264cdaae4725e2681738a48
7
- data.tar.gz: 0f17169041d8c6a74eed29f9f6c1879ae87289b6c48721b90423a8a1b7e60dcbb554aaaeef3c47e8b48ba94d80eafc338179c82ff23d67af5deddd16f66ed746
6
+ metadata.gz: adf68d6ba7136a10120c833c138f7ac949c743b8546f7996c429aad11ea4241c6d390f9fda08e53a025752acd5646fe0800f720e7ced06787a76c2c60ec05b90
7
+ data.tar.gz: f2504d27f4eb94b211ac5e1069b0c820bcb3aa74d5339d61cba871f130277d62b5d9f7d28d1e38badfd31f56c99dd9440949f931b3e9cf151b4ecbb8fd92324a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-servicenetworking_v1beta
2
2
 
3
+ ### v0.26.0 (2022-08-20)
4
+
5
+ * Regenerated from discovery document revision 20220816
6
+
3
7
  ### v0.25.0 (2022-07-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20220720
@@ -2504,6 +2504,17 @@ module Google
2504
2504
  class OAuthRequirements
2505
2505
  include Google::Apis::Core::Hashable
2506
2506
 
2507
+ # UNIMPLEMENTED: If enabled, ESF will allow OAuth credentials with any scope,
2508
+ # more details in http://go/esf-oauth-any-scope. WARNING: Enabling this option
2509
+ # will bring security risks. Customers enabling this feature accidentally may
2510
+ # have the risk of losing authentication enforcement. Please reach out to api-
2511
+ # auth@ and esf-team@ for approval and allowlisting before you enable this
2512
+ # option.
2513
+ # Corresponds to the JSON property `allowAnyScope`
2514
+ # @return [Boolean]
2515
+ attr_accessor :allow_any_scope
2516
+ alias_method :allow_any_scope?, :allow_any_scope
2517
+
2507
2518
  # The list of publicly documented OAuth scopes that are allowed access. An OAuth
2508
2519
  # token containing any of these scopes will be accepted. Example:
2509
2520
  # canonical_scopes: https://www.googleapis.com/auth/calendar, https://www.
@@ -2518,6 +2529,7 @@ module Google
2518
2529
 
2519
2530
  # Update properties of this object
2520
2531
  def update!(**args)
2532
+ @allow_any_scope = args[:allow_any_scope] if args.key?(:allow_any_scope)
2521
2533
  @canonical_scopes = args[:canonical_scopes] if args.key?(:canonical_scopes)
2522
2534
  end
2523
2535
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1beta
18
18
  # Version of the google-apis-servicenetworking_v1beta gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220720"
25
+ REVISION = "20220816"
26
26
  end
27
27
  end
28
28
  end
@@ -1078,6 +1078,7 @@ module Google
1078
1078
  class OAuthRequirements
1079
1079
  # @private
1080
1080
  class Representation < Google::Apis::Core::JsonRepresentation
1081
+ property :allow_any_scope, as: 'allowAnyScope'
1081
1082
  property :canonical_scopes, as: 'canonicalScopes'
1082
1083
  end
1083
1084
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.26.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-07-25 00:00:00.000000000 Z
11
+ date: 2022-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []