google-apis-networkmanagement_v1beta1 0.26.0 → 0.27.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: 639bd7e7bbb5122b9f54c58e7af94e54258c205bb072ce562b3eee9779dab7ea
4
- data.tar.gz: dff264435015943af4cf8b2d90cd7d229276010baf505d0f7349ecbcd6a45fbb
3
+ metadata.gz: ce77eeeb1ec752046778cf23c7502afa174ba4bccf6c042590ac12ee26b44fd9
4
+ data.tar.gz: 7b884415c10148e485cfa6da133c1040b30d4e3ffc65b814a5c1d6eb1894a872
5
5
  SHA512:
6
- metadata.gz: b6396d1f4cae471345b795137fa5e15517c36da802f86aee8b86c63005fe675806e47ee534d2072ab41c58bae726b06512668eebbe28fa3525b63b96279285c2
7
- data.tar.gz: ba09dc5ce176d23c22ec69c2615296d2f32443ee8b58c8f8115d96d0669229ab602927b059815e6418691f42b0790568cbfcaad289bf3c1f51d798a8240626d0
6
+ metadata.gz: bb71a6bd8195b33a2bb90dc79ae01ba94da458b285354b772d946da6e0f39a7c36bf93332b7b09542dbf4e329dd2759b3d0e980f23cf0e8bde132071bffd25a3
7
+ data.tar.gz: a30fe99785155ac2c79b147aa95d4f85d86fd47f0ca92061342fad604612f6d5ab0e59ef59bf0510089bd62c866587c75bd5fc269c348f9193a71ccdb8ffb1c1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.27.0 (2022-11-06)
4
+
5
+ * Regenerated from discovery document revision 20221025
6
+
3
7
  ### v0.26.0 (2022-10-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20220922
@@ -55,6 +55,64 @@ module Google
55
55
  end
56
56
  end
57
57
 
58
+ # Wrapper for app engine service version attributes.
59
+ class AppEngineVersionEndpoint
60
+ include Google::Apis::Core::Hashable
61
+
62
+ # An [App Engine](https://cloud.google.com/appengine) [service version](https://
63
+ # cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.
64
+ # versions) name.
65
+ # Corresponds to the JSON property `uri`
66
+ # @return [String]
67
+ attr_accessor :uri
68
+
69
+ def initialize(**args)
70
+ update!(**args)
71
+ end
72
+
73
+ # Update properties of this object
74
+ def update!(**args)
75
+ @uri = args[:uri] if args.key?(:uri)
76
+ end
77
+ end
78
+
79
+ # For display only. Metadata associated with an App Engine version.
80
+ class AppEngineVersionInfo
81
+ include Google::Apis::Core::Hashable
82
+
83
+ # Name of an App Engine version.
84
+ # Corresponds to the JSON property `displayName`
85
+ # @return [String]
86
+ attr_accessor :display_name
87
+
88
+ # App Engine execution environment for a version.
89
+ # Corresponds to the JSON property `environment`
90
+ # @return [String]
91
+ attr_accessor :environment
92
+
93
+ # Runtime of the App Engine version.
94
+ # Corresponds to the JSON property `runtime`
95
+ # @return [String]
96
+ attr_accessor :runtime
97
+
98
+ # URI of an App Engine version.
99
+ # Corresponds to the JSON property `uri`
100
+ # @return [String]
101
+ attr_accessor :uri
102
+
103
+ def initialize(**args)
104
+ update!(**args)
105
+ end
106
+
107
+ # Update properties of this object
108
+ def update!(**args)
109
+ @display_name = args[:display_name] if args.key?(:display_name)
110
+ @environment = args[:environment] if args.key?(:environment)
111
+ @runtime = args[:runtime] if args.key?(:runtime)
112
+ @uri = args[:uri] if args.key?(:uri)
113
+ end
114
+ end
115
+
58
116
  # Specifies the audit configuration for a service. The configuration determines
59
117
  # which permission types are logged, and what identities, if any, are exempted
60
118
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -271,6 +329,70 @@ module Google
271
329
  end
272
330
  end
273
331
 
332
+ # Wrapper for Cloud Run revision attributes.
333
+ class CloudRunRevisionEndpoint
334
+ include Google::Apis::Core::Hashable
335
+
336
+ # A [Cloud Run](https://cloud.google.com/run) [revision](https://cloud.google.
337
+ # com/run/docs/reference/rest/v1/namespaces.revisions/get) URI. The format is:
338
+ # projects/`project`/locations/`location`/revisions/`revision`
339
+ # Corresponds to the JSON property `uri`
340
+ # @return [String]
341
+ attr_accessor :uri
342
+
343
+ def initialize(**args)
344
+ update!(**args)
345
+ end
346
+
347
+ # Update properties of this object
348
+ def update!(**args)
349
+ @uri = args[:uri] if args.key?(:uri)
350
+ end
351
+ end
352
+
353
+ # For display only. Metadata associated with a Cloud Run revision.
354
+ class CloudRunRevisionInfo
355
+ include Google::Apis::Core::Hashable
356
+
357
+ # Name of a Cloud Run revision.
358
+ # Corresponds to the JSON property `displayName`
359
+ # @return [String]
360
+ attr_accessor :display_name
361
+
362
+ # Location in which this revision is deployed.
363
+ # Corresponds to the JSON property `location`
364
+ # @return [String]
365
+ attr_accessor :location
366
+
367
+ # ID of Cloud Run Service this revision belongs to.
368
+ # Corresponds to the JSON property `serviceName`
369
+ # @return [String]
370
+ attr_accessor :service_name
371
+
372
+ # URI of Cloud Run service this revision belongs to.
373
+ # Corresponds to the JSON property `serviceUri`
374
+ # @return [String]
375
+ attr_accessor :service_uri
376
+
377
+ # URI of a Cloud Run revision.
378
+ # Corresponds to the JSON property `uri`
379
+ # @return [String]
380
+ attr_accessor :uri
381
+
382
+ def initialize(**args)
383
+ update!(**args)
384
+ end
385
+
386
+ # Update properties of this object
387
+ def update!(**args)
388
+ @display_name = args[:display_name] if args.key?(:display_name)
389
+ @location = args[:location] if args.key?(:location)
390
+ @service_name = args[:service_name] if args.key?(:service_name)
391
+ @service_uri = args[:service_uri] if args.key?(:service_uri)
392
+ @uri = args[:uri] if args.key?(:uri)
393
+ end
394
+ end
395
+
274
396
  # For display only. Metadata associated with a Cloud SQL instance.
275
397
  class CloudSqlInstanceInfo
276
398
  include Google::Apis::Core::Hashable
@@ -499,11 +621,21 @@ module Google
499
621
  class Endpoint
500
622
  include Google::Apis::Core::Hashable
501
623
 
624
+ # Wrapper for app engine service version attributes.
625
+ # Corresponds to the JSON property `appEngineVersion`
626
+ # @return [Google::Apis::NetworkmanagementV1beta1::AppEngineVersionEndpoint]
627
+ attr_accessor :app_engine_version
628
+
502
629
  # Wrapper for Cloud Function attributes.
503
630
  # Corresponds to the JSON property `cloudFunction`
504
631
  # @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint]
505
632
  attr_accessor :cloud_function
506
633
 
634
+ # Wrapper for Cloud Run revision attributes.
635
+ # Corresponds to the JSON property `cloudRunRevision`
636
+ # @return [Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint]
637
+ attr_accessor :cloud_run_revision
638
+
507
639
  # A [Cloud SQL](https://cloud.google.com/sql) instance URI.
508
640
  # Corresponds to the JSON property `cloudSqlInstance`
509
641
  # @return [String]
@@ -562,7 +694,9 @@ module Google
562
694
 
563
695
  # Update properties of this object
564
696
  def update!(**args)
697
+ @app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
565
698
  @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
699
+ @cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
566
700
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
567
701
  @gke_master_cluster = args[:gke_master_cluster] if args.key?(:gke_master_cluster)
568
702
  @instance = args[:instance] if args.key?(:instance)
@@ -1780,6 +1914,11 @@ module Google
1780
1914
  # @return [Google::Apis::NetworkmanagementV1beta1::AbortInfo]
1781
1915
  attr_accessor :abort
1782
1916
 
1917
+ # For display only. Metadata associated with an App Engine version.
1918
+ # Corresponds to the JSON property `appEngineVersion`
1919
+ # @return [Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo]
1920
+ attr_accessor :app_engine_version
1921
+
1783
1922
  # This is a step that leads to the final state Drop.
1784
1923
  # Corresponds to the JSON property `causesDrop`
1785
1924
  # @return [Boolean]
@@ -1791,6 +1930,11 @@ module Google
1791
1930
  # @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo]
1792
1931
  attr_accessor :cloud_function
1793
1932
 
1933
+ # For display only. Metadata associated with a Cloud Run revision.
1934
+ # Corresponds to the JSON property `cloudRunRevision`
1935
+ # @return [Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo]
1936
+ attr_accessor :cloud_run_revision
1937
+
1794
1938
  # For display only. Metadata associated with a Cloud SQL instance.
1795
1939
  # Corresponds to the JSON property `cloudSqlInstance`
1796
1940
  # @return [Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo]
@@ -1892,8 +2036,10 @@ module Google
1892
2036
  # Update properties of this object
1893
2037
  def update!(**args)
1894
2038
  @abort = args[:abort] if args.key?(:abort)
2039
+ @app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
1895
2040
  @causes_drop = args[:causes_drop] if args.key?(:causes_drop)
1896
2041
  @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
2042
+ @cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
1897
2043
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
1898
2044
  @deliver = args[:deliver] if args.key?(:deliver)
1899
2045
  @description = args[:description] if args.key?(:description)
@@ -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.26.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220922"
25
+ REVISION = "20221025"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,18 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AppEngineVersionEndpoint
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class AppEngineVersionInfo
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
31
43
  class AuditConfig
32
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
45
 
@@ -64,6 +76,18 @@ module Google
64
76
  include Google::Apis::Core::JsonObjectSupport
65
77
  end
66
78
 
79
+ class CloudRunRevisionEndpoint
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
85
+ class CloudRunRevisionInfo
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
67
91
  class CloudSqlInstanceInfo
68
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
93
 
@@ -307,6 +331,23 @@ module Google
307
331
  end
308
332
  end
309
333
 
334
+ class AppEngineVersionEndpoint
335
+ # @private
336
+ class Representation < Google::Apis::Core::JsonRepresentation
337
+ property :uri, as: 'uri'
338
+ end
339
+ end
340
+
341
+ class AppEngineVersionInfo
342
+ # @private
343
+ class Representation < Google::Apis::Core::JsonRepresentation
344
+ property :display_name, as: 'displayName'
345
+ property :environment, as: 'environment'
346
+ property :runtime, as: 'runtime'
347
+ property :uri, as: 'uri'
348
+ end
349
+ end
350
+
310
351
  class AuditConfig
311
352
  # @private
312
353
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -357,6 +398,24 @@ module Google
357
398
  end
358
399
  end
359
400
 
401
+ class CloudRunRevisionEndpoint
402
+ # @private
403
+ class Representation < Google::Apis::Core::JsonRepresentation
404
+ property :uri, as: 'uri'
405
+ end
406
+ end
407
+
408
+ class CloudRunRevisionInfo
409
+ # @private
410
+ class Representation < Google::Apis::Core::JsonRepresentation
411
+ property :display_name, as: 'displayName'
412
+ property :location, as: 'location'
413
+ property :service_name, as: 'serviceName'
414
+ property :service_uri, as: 'serviceUri'
415
+ property :uri, as: 'uri'
416
+ end
417
+ end
418
+
360
419
  class CloudSqlInstanceInfo
361
420
  # @private
362
421
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -423,8 +482,12 @@ module Google
423
482
  class Endpoint
424
483
  # @private
425
484
  class Representation < Google::Apis::Core::JsonRepresentation
485
+ property :app_engine_version, as: 'appEngineVersion', class: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionEndpoint::Representation
486
+
426
487
  property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint::Representation
427
488
 
489
+ property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint::Representation
490
+
428
491
  property :cloud_sql_instance, as: 'cloudSqlInstance'
429
492
  property :gke_master_cluster, as: 'gkeMasterCluster'
430
493
  property :instance, as: 'instance'
@@ -724,9 +787,13 @@ module Google
724
787
  class Representation < Google::Apis::Core::JsonRepresentation
725
788
  property :abort, as: 'abort', class: Google::Apis::NetworkmanagementV1beta1::AbortInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AbortInfo::Representation
726
789
 
790
+ property :app_engine_version, as: 'appEngineVersion', class: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo::Representation
791
+
727
792
  property :causes_drop, as: 'causesDrop'
728
793
  property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo::Representation
729
794
 
795
+ property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo::Representation
796
+
730
797
  property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo::Representation
731
798
 
732
799
  property :deliver, as: 'deliver', class: Google::Apis::NetworkmanagementV1beta1::DeliverInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DeliverInfo::Representation
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.26.0
4
+ version: 0.27.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-10-31 00:00:00.000000000 Z
11
+ date: 2022-11-07 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-networkmanagement_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.27.0
62
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: []