google-apis-networkmanagement_v1beta1 0.9.0 → 0.10.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: d2b5b874b5770fc0acb069f0ba95041856f53b77c88ef89102219299816b7f2f
4
- data.tar.gz: ab53e8d029e54e53eb2b68c1a939d7dad94bb4f31a093deb3828536fec5957e4
3
+ metadata.gz: 0c2cdfdf3db3b74099300385d297d15590890a725c41130f2e387d0e92b83909
4
+ data.tar.gz: 42e36bbc88018000121f410c71114350645a76a45eaa331c827ff560b9603127
5
5
  SHA512:
6
- metadata.gz: 2e5a8a919be05fc836b49911ec6177ff0f5fc795a11519261c4a981051a4c14934e1d0387a802479cd3fd66f363ce17be918080a3b0d8f6302359c1638ec93aa
7
- data.tar.gz: c5fc817a1ab8728c470e86c409df2be92166e343d8c299f52c9783dda77dbb4c6ebb49631219235cce6ee9c7b8cb0833d879338ab81d28d469c6b9718ca22d48
6
+ metadata.gz: f5a16ed5a44e1ba8e3272e9be8a8d12edb17b870b915170df42487cc5a9293d0665090b3e06fa30d879d37d735cd73c8b908fdc9a8a6b6c3a27e2a4f937c8bb4
7
+ data.tar.gz: 03fbb1b911ca5aa28445a5e508aa99350315f47983a026f20a2de68362246927f1eba2fc118804bfd2ec5b70411537582a8ce71f7812e904409e805cdca3f721
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.10.0 (2021-10-23)
4
+
5
+ * Regenerated from discovery document revision 20210929
6
+
3
7
  ### v0.9.0 (2021-08-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20210811
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Networkmanagement service in particular.)
67
67
 
@@ -202,6 +202,25 @@ module Google
202
202
  end
203
203
  end
204
204
 
205
+ # Wrapper for cloud function attributes.
206
+ class CloudFunctionEndpoint
207
+ include Google::Apis::Core::Hashable
208
+
209
+ # A [Cloud function](https://cloud.google.com/functions) name.
210
+ # Corresponds to the JSON property `uri`
211
+ # @return [String]
212
+ attr_accessor :uri
213
+
214
+ def initialize(**args)
215
+ update!(**args)
216
+ end
217
+
218
+ # Update properties of this object
219
+ def update!(**args)
220
+ @uri = args[:uri] if args.key?(:uri)
221
+ end
222
+ end
223
+
205
224
  # For display only. Metadata associated with a Cloud SQL instance.
206
225
  class CloudSqlInstanceInfo
207
226
  include Google::Apis::Core::Hashable
@@ -411,6 +430,11 @@ module Google
411
430
  class Endpoint
412
431
  include Google::Apis::Core::Hashable
413
432
 
433
+ # Wrapper for cloud function attributes.
434
+ # Corresponds to the JSON property `cloudFunction`
435
+ # @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint]
436
+ attr_accessor :cloud_function
437
+
414
438
  # A [Cloud SQL](https://cloud.google.com/sql) instance URI.
415
439
  # Corresponds to the JSON property `cloudSqlInstance`
416
440
  # @return [String]
@@ -469,6 +493,7 @@ module Google
469
493
 
470
494
  # Update properties of this object
471
495
  def update!(**args)
496
+ @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
472
497
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
473
498
  @gke_master_cluster = args[:gke_master_cluster] if args.key?(:gke_master_cluster)
474
499
  @instance = args[:instance] if args.key?(:instance)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkmanagementV1beta1
18
18
  # Version of the google-apis-networkmanagement_v1beta1 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210811"
25
+ REVISION = "20210929"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,12 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class CloudFunctionEndpoint
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
55
61
  class CloudSqlInstanceInfo
56
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
63
 
@@ -315,6 +321,13 @@ module Google
315
321
  end
316
322
  end
317
323
 
324
+ class CloudFunctionEndpoint
325
+ # @private
326
+ class Representation < Google::Apis::Core::JsonRepresentation
327
+ property :uri, as: 'uri'
328
+ end
329
+ end
330
+
318
331
  class CloudSqlInstanceInfo
319
332
  # @private
320
333
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -374,6 +387,8 @@ module Google
374
387
  class Endpoint
375
388
  # @private
376
389
  class Representation < Google::Apis::Core::JsonRepresentation
390
+ property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint::Representation
391
+
377
392
  property :cloud_sql_instance, as: 'cloudSqlInstance'
378
393
  property :gke_master_cluster, as: 'gkeMasterCluster'
379
394
  property :instance, as: 'instance'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.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: 2021-08-23 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-networkmanagement_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.9.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-networkmanagement_v1beta1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.10.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: