google-apis-networkmanagement_v1beta1 0.13.0 → 0.14.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69d44193852019b758c9e453d09ddf9642e76f06112fb137bfa672363463fce2
|
4
|
+
data.tar.gz: 1120b305b62d1ff21352ef7def4113e092716cba9458e02a513472bd74d3ed1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 410ad8e73626d146255e43e6d1305efd37c6d03813ddc5fa638f0b62f23f7684dda794b3b4b6da8793c2e85163d5ab53c6458b6ddb28d34ef0e26eeb5065bd84
|
7
|
+
data.tar.gz: ab509622649d44631290109b29f5a80c2383ccbe1c665b629a27011ff9bf536c56086adf82e3c94e60db74afc4483b83d122f9293b79ca140c32abe27d911071
|
data/CHANGELOG.md
CHANGED
@@ -47,6 +47,43 @@ module Google
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
# For display only. Metadata associated with an App Engine version.
|
51
|
+
class AppEngineVersionInfo
|
52
|
+
include Google::Apis::Core::Hashable
|
53
|
+
|
54
|
+
# Name of an App Engine version.
|
55
|
+
# Corresponds to the JSON property `displayName`
|
56
|
+
# @return [String]
|
57
|
+
attr_accessor :display_name
|
58
|
+
|
59
|
+
# App Engine execution environment for a version.
|
60
|
+
# Corresponds to the JSON property `environment`
|
61
|
+
# @return [String]
|
62
|
+
attr_accessor :environment
|
63
|
+
|
64
|
+
# Runtime of the App Engine version.
|
65
|
+
# Corresponds to the JSON property `runtime`
|
66
|
+
# @return [String]
|
67
|
+
attr_accessor :runtime
|
68
|
+
|
69
|
+
# URI of an App Engine version.
|
70
|
+
# Corresponds to the JSON property `uri`
|
71
|
+
# @return [String]
|
72
|
+
attr_accessor :uri
|
73
|
+
|
74
|
+
def initialize(**args)
|
75
|
+
update!(**args)
|
76
|
+
end
|
77
|
+
|
78
|
+
# Update properties of this object
|
79
|
+
def update!(**args)
|
80
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
81
|
+
@environment = args[:environment] if args.key?(:environment)
|
82
|
+
@runtime = args[:runtime] if args.key?(:runtime)
|
83
|
+
@uri = args[:uri] if args.key?(:uri)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
50
87
|
# Specifies the audit configuration for a service. The configuration determines
|
51
88
|
# which permission types are logged, and what identities, if any, are exempted
|
52
89
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -221,6 +258,43 @@ module Google
|
|
221
258
|
end
|
222
259
|
end
|
223
260
|
|
261
|
+
# For display only. Metadata associated with a Cloud function.
|
262
|
+
class CloudFunctionInfo
|
263
|
+
include Google::Apis::Core::Hashable
|
264
|
+
|
265
|
+
# Name of a Cloud function.
|
266
|
+
# Corresponds to the JSON property `displayName`
|
267
|
+
# @return [String]
|
268
|
+
attr_accessor :display_name
|
269
|
+
|
270
|
+
# Location in which the Cloud function is deployed.
|
271
|
+
# Corresponds to the JSON property `location`
|
272
|
+
# @return [String]
|
273
|
+
attr_accessor :location
|
274
|
+
|
275
|
+
# URI of a Cloud function.
|
276
|
+
# Corresponds to the JSON property `uri`
|
277
|
+
# @return [String]
|
278
|
+
attr_accessor :uri
|
279
|
+
|
280
|
+
# Latest successfully deployed version id of the Cloud function.
|
281
|
+
# Corresponds to the JSON property `versionId`
|
282
|
+
# @return [Fixnum]
|
283
|
+
attr_accessor :version_id
|
284
|
+
|
285
|
+
def initialize(**args)
|
286
|
+
update!(**args)
|
287
|
+
end
|
288
|
+
|
289
|
+
# Update properties of this object
|
290
|
+
def update!(**args)
|
291
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
292
|
+
@location = args[:location] if args.key?(:location)
|
293
|
+
@uri = args[:uri] if args.key?(:uri)
|
294
|
+
@version_id = args[:version_id] if args.key?(:version_id)
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
224
298
|
# For display only. Metadata associated with a Cloud SQL instance.
|
225
299
|
class CloudSqlInstanceInfo
|
226
300
|
include Google::Apis::Core::Hashable
|
@@ -1680,12 +1754,22 @@ module Google
|
|
1680
1754
|
# @return [Google::Apis::NetworkmanagementV1beta1::AbortInfo]
|
1681
1755
|
attr_accessor :abort
|
1682
1756
|
|
1757
|
+
# For display only. Metadata associated with an App Engine version.
|
1758
|
+
# Corresponds to the JSON property `appEngineVersionInfo`
|
1759
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo]
|
1760
|
+
attr_accessor :app_engine_version_info
|
1761
|
+
|
1683
1762
|
# This is a step that leads to the final state Drop.
|
1684
1763
|
# Corresponds to the JSON property `causesDrop`
|
1685
1764
|
# @return [Boolean]
|
1686
1765
|
attr_accessor :causes_drop
|
1687
1766
|
alias_method :causes_drop?, :causes_drop
|
1688
1767
|
|
1768
|
+
# For display only. Metadata associated with a Cloud function.
|
1769
|
+
# Corresponds to the JSON property `cloudFunction`
|
1770
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo]
|
1771
|
+
attr_accessor :cloud_function
|
1772
|
+
|
1689
1773
|
# For display only. Metadata associated with a Cloud SQL instance.
|
1690
1774
|
# Corresponds to the JSON property `cloudSqlInstance`
|
1691
1775
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo]
|
@@ -1765,6 +1849,11 @@ module Google
|
|
1765
1849
|
# @return [String]
|
1766
1850
|
attr_accessor :state
|
1767
1851
|
|
1852
|
+
# For display only. Metadata associated with a VPC connector.
|
1853
|
+
# Corresponds to the JSON property `vpcConnector`
|
1854
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo]
|
1855
|
+
attr_accessor :vpc_connector
|
1856
|
+
|
1768
1857
|
# For display only. Metadata associated with a Compute Engine VPN gateway.
|
1769
1858
|
# Corresponds to the JSON property `vpnGateway`
|
1770
1859
|
# @return [Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo]
|
@@ -1782,7 +1871,9 @@ module Google
|
|
1782
1871
|
# Update properties of this object
|
1783
1872
|
def update!(**args)
|
1784
1873
|
@abort = args[:abort] if args.key?(:abort)
|
1874
|
+
@app_engine_version_info = args[:app_engine_version_info] if args.key?(:app_engine_version_info)
|
1785
1875
|
@causes_drop = args[:causes_drop] if args.key?(:causes_drop)
|
1876
|
+
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
1786
1877
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
1787
1878
|
@deliver = args[:deliver] if args.key?(:deliver)
|
1788
1879
|
@description = args[:description] if args.key?(:description)
|
@@ -1798,6 +1889,7 @@ module Google
|
|
1798
1889
|
@project_id = args[:project_id] if args.key?(:project_id)
|
1799
1890
|
@route = args[:route] if args.key?(:route)
|
1800
1891
|
@state = args[:state] if args.key?(:state)
|
1892
|
+
@vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
|
1801
1893
|
@vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
|
1802
1894
|
@vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
|
1803
1895
|
end
|
@@ -1879,6 +1971,37 @@ module Google
|
|
1879
1971
|
end
|
1880
1972
|
end
|
1881
1973
|
|
1974
|
+
# For display only. Metadata associated with a VPC connector.
|
1975
|
+
class VpcConnectorInfo
|
1976
|
+
include Google::Apis::Core::Hashable
|
1977
|
+
|
1978
|
+
# Name of a VPC connector.
|
1979
|
+
# Corresponds to the JSON property `displayName`
|
1980
|
+
# @return [String]
|
1981
|
+
attr_accessor :display_name
|
1982
|
+
|
1983
|
+
# Location in which the VPC connector is deployed.
|
1984
|
+
# Corresponds to the JSON property `location`
|
1985
|
+
# @return [String]
|
1986
|
+
attr_accessor :location
|
1987
|
+
|
1988
|
+
# URI of a VPC connector.
|
1989
|
+
# Corresponds to the JSON property `uri`
|
1990
|
+
# @return [String]
|
1991
|
+
attr_accessor :uri
|
1992
|
+
|
1993
|
+
def initialize(**args)
|
1994
|
+
update!(**args)
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
# Update properties of this object
|
1998
|
+
def update!(**args)
|
1999
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2000
|
+
@location = args[:location] if args.key?(:location)
|
2001
|
+
@uri = args[:uri] if args.key?(:uri)
|
2002
|
+
end
|
2003
|
+
end
|
2004
|
+
|
1882
2005
|
# For display only. Metadata associated with a Compute Engine VPN gateway.
|
1883
2006
|
class VpnGatewayInfo
|
1884
2007
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220223"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AppEngineVersionInfo
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AuditConfig
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -58,6 +64,12 @@ module Google
|
|
58
64
|
include Google::Apis::Core::JsonObjectSupport
|
59
65
|
end
|
60
66
|
|
67
|
+
class CloudFunctionInfo
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
61
73
|
class CloudSqlInstanceInfo
|
62
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
75
|
|
@@ -268,6 +280,12 @@ module Google
|
|
268
280
|
include Google::Apis::Core::JsonObjectSupport
|
269
281
|
end
|
270
282
|
|
283
|
+
class VpcConnectorInfo
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
271
289
|
class VpnGatewayInfo
|
272
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
291
|
|
@@ -288,6 +306,16 @@ module Google
|
|
288
306
|
end
|
289
307
|
end
|
290
308
|
|
309
|
+
class AppEngineVersionInfo
|
310
|
+
# @private
|
311
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
312
|
+
property :display_name, as: 'displayName'
|
313
|
+
property :environment, as: 'environment'
|
314
|
+
property :runtime, as: 'runtime'
|
315
|
+
property :uri, as: 'uri'
|
316
|
+
end
|
317
|
+
end
|
318
|
+
|
291
319
|
class AuditConfig
|
292
320
|
# @private
|
293
321
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -328,6 +356,16 @@ module Google
|
|
328
356
|
end
|
329
357
|
end
|
330
358
|
|
359
|
+
class CloudFunctionInfo
|
360
|
+
# @private
|
361
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
362
|
+
property :display_name, as: 'displayName'
|
363
|
+
property :location, as: 'location'
|
364
|
+
property :uri, as: 'uri'
|
365
|
+
property :version_id, :numeric_string => true, as: 'versionId'
|
366
|
+
end
|
367
|
+
end
|
368
|
+
|
331
369
|
class CloudSqlInstanceInfo
|
332
370
|
# @private
|
333
371
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -682,7 +720,11 @@ module Google
|
|
682
720
|
class Representation < Google::Apis::Core::JsonRepresentation
|
683
721
|
property :abort, as: 'abort', class: Google::Apis::NetworkmanagementV1beta1::AbortInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AbortInfo::Representation
|
684
722
|
|
723
|
+
property :app_engine_version_info, as: 'appEngineVersionInfo', class: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo::Representation
|
724
|
+
|
685
725
|
property :causes_drop, as: 'causesDrop'
|
726
|
+
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo::Representation
|
727
|
+
|
686
728
|
property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo::Representation
|
687
729
|
|
688
730
|
property :deliver, as: 'deliver', class: Google::Apis::NetworkmanagementV1beta1::DeliverInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DeliverInfo::Representation
|
@@ -710,6 +752,8 @@ module Google
|
|
710
752
|
property :route, as: 'route', class: Google::Apis::NetworkmanagementV1beta1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1beta1::RouteInfo::Representation
|
711
753
|
|
712
754
|
property :state, as: 'state'
|
755
|
+
property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo::Representation
|
756
|
+
|
713
757
|
property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo::Representation
|
714
758
|
|
715
759
|
property :vpn_tunnel, as: 'vpnTunnel', class: Google::Apis::NetworkmanagementV1beta1::VpnTunnelInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpnTunnelInfo::Representation
|
@@ -741,6 +785,15 @@ module Google
|
|
741
785
|
end
|
742
786
|
end
|
743
787
|
|
788
|
+
class VpcConnectorInfo
|
789
|
+
# @private
|
790
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
791
|
+
property :display_name, as: 'displayName'
|
792
|
+
property :location, as: 'location'
|
793
|
+
property :uri, as: 'uri'
|
794
|
+
end
|
795
|
+
end
|
796
|
+
|
744
797
|
class VpnGatewayInfo
|
745
798
|
# @private
|
746
799
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.14.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-
|
11
|
+
date: 2022-03-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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.14.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Management API V1beta1
|