google-apis-networkmanagement_v1 0.23.0 → 0.24.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: 7402308d78201f4ae1b06d3c4b8765aed98e6f08f737431bd58f51c6f14825dd
4
- data.tar.gz: 6cc1543475f60e45c2fa40c469326676760b3282fc1c78320dbca035c82a7b3b
3
+ metadata.gz: 4fb64bf567052365ebd874f0fc2babfc495421269b3ec2efd8e59c2749723962
4
+ data.tar.gz: 6a8f84d1f368675b5c5e2ed3d2a85324c98817573d08d43a9508486d7c2f39ce
5
5
  SHA512:
6
- metadata.gz: 9f46e82af7e1e68637a79a0371c7a5920ecd7c540fc8bb4696b5fad005190adbd89d1f8545e484959aee204532ac8b7d300cdfa5c2e4433d759d63b48335953c
7
- data.tar.gz: af840ea50a37ae6ef4db60f87195447063b8aac3e6409c2a0cec69e33396bf03c8446634a48fa53dba85ab4a11b7ba69887f70754affaed56942222ef09d8542
6
+ metadata.gz: c3ebd1ddd2789819c981fa5a04d1404c1333a3d72ffa843b27c722a07f8f280d0a718236765f61c863c9beafb6ac05cd894b4211a86fd2a3ab9a8b15e4099186
7
+ data.tar.gz: 3aa11b4edd111087a663abb52d04a4184694acd56819d2245c309e6f9e00f9ebf20571551b7763503321c370d5aa8736afa654851a572b4bbedf1e342ca2a318
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.24.0 (2022-12-07)
4
+
5
+ * Regenerated from discovery document revision 20221117
6
+
3
7
  ### v0.23.0 (2022-10-27)
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,64 @@ 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
+ # URI of Cloud Run service this revision belongs to.
368
+ # Corresponds to the JSON property `serviceUri`
369
+ # @return [String]
370
+ attr_accessor :service_uri
371
+
372
+ # URI of a Cloud Run revision.
373
+ # Corresponds to the JSON property `uri`
374
+ # @return [String]
375
+ attr_accessor :uri
376
+
377
+ def initialize(**args)
378
+ update!(**args)
379
+ end
380
+
381
+ # Update properties of this object
382
+ def update!(**args)
383
+ @display_name = args[:display_name] if args.key?(:display_name)
384
+ @location = args[:location] if args.key?(:location)
385
+ @service_uri = args[:service_uri] if args.key?(:service_uri)
386
+ @uri = args[:uri] if args.key?(:uri)
387
+ end
388
+ end
389
+
274
390
  # For display only. Metadata associated with a Cloud SQL instance.
275
391
  class CloudSqlInstanceInfo
276
392
  include Google::Apis::Core::Hashable
@@ -473,11 +589,21 @@ module Google
473
589
  class Endpoint
474
590
  include Google::Apis::Core::Hashable
475
591
 
592
+ # Wrapper for app engine service version attributes.
593
+ # Corresponds to the JSON property `appEngineVersion`
594
+ # @return [Google::Apis::NetworkmanagementV1::AppEngineVersionEndpoint]
595
+ attr_accessor :app_engine_version
596
+
476
597
  # Wrapper for Cloud Function attributes.
477
598
  # Corresponds to the JSON property `cloudFunction`
478
599
  # @return [Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint]
479
600
  attr_accessor :cloud_function
480
601
 
602
+ # Wrapper for Cloud Run revision attributes.
603
+ # Corresponds to the JSON property `cloudRunRevision`
604
+ # @return [Google::Apis::NetworkmanagementV1::CloudRunRevisionEndpoint]
605
+ attr_accessor :cloud_run_revision
606
+
481
607
  # A [Cloud SQL](https://cloud.google.com/sql) instance URI.
482
608
  # Corresponds to the JSON property `cloudSqlInstance`
483
609
  # @return [String]
@@ -535,7 +661,9 @@ module Google
535
661
 
536
662
  # Update properties of this object
537
663
  def update!(**args)
664
+ @app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
538
665
  @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
666
+ @cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
539
667
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
540
668
  @gke_master_cluster = args[:gke_master_cluster] if args.key?(:gke_master_cluster)
541
669
  @instance = args[:instance] if args.key?(:instance)
@@ -1627,6 +1755,11 @@ module Google
1627
1755
  # @return [Google::Apis::NetworkmanagementV1::AbortInfo]
1628
1756
  attr_accessor :abort
1629
1757
 
1758
+ # For display only. Metadata associated with an App Engine version.
1759
+ # Corresponds to the JSON property `appEngineVersion`
1760
+ # @return [Google::Apis::NetworkmanagementV1::AppEngineVersionInfo]
1761
+ attr_accessor :app_engine_version
1762
+
1630
1763
  # This is a step that leads to the final state Drop.
1631
1764
  # Corresponds to the JSON property `causesDrop`
1632
1765
  # @return [Boolean]
@@ -1638,6 +1771,11 @@ module Google
1638
1771
  # @return [Google::Apis::NetworkmanagementV1::CloudFunctionInfo]
1639
1772
  attr_accessor :cloud_function
1640
1773
 
1774
+ # For display only. Metadata associated with a Cloud Run revision.
1775
+ # Corresponds to the JSON property `cloudRunRevision`
1776
+ # @return [Google::Apis::NetworkmanagementV1::CloudRunRevisionInfo]
1777
+ attr_accessor :cloud_run_revision
1778
+
1641
1779
  # For display only. Metadata associated with a Cloud SQL instance.
1642
1780
  # Corresponds to the JSON property `cloudSqlInstance`
1643
1781
  # @return [Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo]
@@ -1739,8 +1877,10 @@ module Google
1739
1877
  # Update properties of this object
1740
1878
  def update!(**args)
1741
1879
  @abort = args[:abort] if args.key?(:abort)
1880
+ @app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
1742
1881
  @causes_drop = args[:causes_drop] if args.key?(:causes_drop)
1743
1882
  @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
1883
+ @cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
1744
1884
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
1745
1885
  @deliver = args[:deliver] if args.key?(:deliver)
1746
1886
  @description = args[:description] if args.key?(:description)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkmanagementV1
18
18
  # Version of the google-apis-networkmanagement_v1 gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.24.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 = "20221117"
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
 
@@ -283,6 +307,23 @@ module Google
283
307
  end
284
308
  end
285
309
 
310
+ class AppEngineVersionEndpoint
311
+ # @private
312
+ class Representation < Google::Apis::Core::JsonRepresentation
313
+ property :uri, as: 'uri'
314
+ end
315
+ end
316
+
317
+ class AppEngineVersionInfo
318
+ # @private
319
+ class Representation < Google::Apis::Core::JsonRepresentation
320
+ property :display_name, as: 'displayName'
321
+ property :environment, as: 'environment'
322
+ property :runtime, as: 'runtime'
323
+ property :uri, as: 'uri'
324
+ end
325
+ end
326
+
286
327
  class AuditConfig
287
328
  # @private
288
329
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -333,6 +374,23 @@ module Google
333
374
  end
334
375
  end
335
376
 
377
+ class CloudRunRevisionEndpoint
378
+ # @private
379
+ class Representation < Google::Apis::Core::JsonRepresentation
380
+ property :uri, as: 'uri'
381
+ end
382
+ end
383
+
384
+ class CloudRunRevisionInfo
385
+ # @private
386
+ class Representation < Google::Apis::Core::JsonRepresentation
387
+ property :display_name, as: 'displayName'
388
+ property :location, as: 'location'
389
+ property :service_uri, as: 'serviceUri'
390
+ property :uri, as: 'uri'
391
+ end
392
+ end
393
+
336
394
  class CloudSqlInstanceInfo
337
395
  # @private
338
396
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -390,8 +448,12 @@ module Google
390
448
  class Endpoint
391
449
  # @private
392
450
  class Representation < Google::Apis::Core::JsonRepresentation
451
+ property :app_engine_version, as: 'appEngineVersion', class: Google::Apis::NetworkmanagementV1::AppEngineVersionEndpoint, decorator: Google::Apis::NetworkmanagementV1::AppEngineVersionEndpoint::Representation
452
+
393
453
  property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint, decorator: Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint::Representation
394
454
 
455
+ property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1::CloudRunRevisionEndpoint, decorator: Google::Apis::NetworkmanagementV1::CloudRunRevisionEndpoint::Representation
456
+
395
457
  property :cloud_sql_instance, as: 'cloudSqlInstance'
396
458
  property :gke_master_cluster, as: 'gkeMasterCluster'
397
459
  property :instance, as: 'instance'
@@ -655,9 +717,13 @@ module Google
655
717
  class Representation < Google::Apis::Core::JsonRepresentation
656
718
  property :abort, as: 'abort', class: Google::Apis::NetworkmanagementV1::AbortInfo, decorator: Google::Apis::NetworkmanagementV1::AbortInfo::Representation
657
719
 
720
+ property :app_engine_version, as: 'appEngineVersion', class: Google::Apis::NetworkmanagementV1::AppEngineVersionInfo, decorator: Google::Apis::NetworkmanagementV1::AppEngineVersionInfo::Representation
721
+
658
722
  property :causes_drop, as: 'causesDrop'
659
723
  property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1::CloudFunctionInfo::Representation
660
724
 
725
+ property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1::CloudRunRevisionInfo, decorator: Google::Apis::NetworkmanagementV1::CloudRunRevisionInfo::Representation
726
+
661
727
  property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo::Representation
662
728
 
663
729
  property :deliver, as: 'deliver', class: Google::Apis::NetworkmanagementV1::DeliverInfo, decorator: Google::Apis::NetworkmanagementV1::DeliverInfo::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.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-12-12 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.24.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []