google-apis-networkservices_v1beta1 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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkservices_v1beta1/classes.rb +43 -0
- data/lib/google/apis/networkservices_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1beta1/representations.rb +5 -0
- data/lib/google/apis/networkservices_v1beta1/service.rb +1 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57833eb0bbbe3877c7f5fbe12e26c8f162e387aaac585ba6b0e4fe0a726fda0c
|
4
|
+
data.tar.gz: 11e27f26b8e7aa31a2f3e9572a4507247d99cdff74d62ef54d0f6f9121d4c3c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d4396a96f8dd088bb4995b3732f409c0b462d03a89e8a3efe41ef92fb6c80620ea706b914ed00cbd43ac1f32561b7a7ebbee76fd44cd869a2aa6ed2b8376c2f
|
7
|
+
data.tar.gz: e399a76bb8dc800f0ca2d8ca5bca5702469392fc6db90812a664a3b68b6520b7cd82318926a5fcd9d3ee56fb36c20f2bf923f0198f79d44c7ad4c4f7b387d250
|
data/CHANGELOG.md
CHANGED
@@ -376,6 +376,21 @@ module Google
|
|
376
376
|
class Gateway
|
377
377
|
include Google::Apis::Core::Hashable
|
378
378
|
|
379
|
+
# Optional. Zero or one IPv4-address on which the Gateway will receive the
|
380
|
+
# traffic. When no address is provided, an IP from the subnetwork is allocated
|
381
|
+
# This field only applies to gateways of type 'SECURE_WEB_GATEWAY'. Gateways of
|
382
|
+
# type 'OPEN_MESH' listen on 0.0.0.0.
|
383
|
+
# Corresponds to the JSON property `addresses`
|
384
|
+
# @return [Array<String>]
|
385
|
+
attr_accessor :addresses
|
386
|
+
|
387
|
+
# Optional. A fully-qualified Certificates URL reference. The proxy presents a
|
388
|
+
# Certificate (selected based on SNI) when establishing a TLS connection. This
|
389
|
+
# feature only applies to gateways of type 'SECURE_WEB_GATEWAY'.
|
390
|
+
# Corresponds to the JSON property `certificateUrls`
|
391
|
+
# @return [Array<String>]
|
392
|
+
attr_accessor :certificate_urls
|
393
|
+
|
379
394
|
# Output only. The timestamp when the resource was created.
|
380
395
|
# Corresponds to the JSON property `createTime`
|
381
396
|
# @return [String]
|
@@ -386,6 +401,14 @@ module Google
|
|
386
401
|
# @return [String]
|
387
402
|
attr_accessor :description
|
388
403
|
|
404
|
+
# Optional. A fully-qualified GatewaySecurityPolicy URL reference. Defines how a
|
405
|
+
# server should apply security policy to inbound (VM to Proxy) initiated
|
406
|
+
# connections. For example: `projects/*/locations/*/gatewaySecurityPolicies/swg-
|
407
|
+
# policy`. This policy is specific to gateways of type 'SECURE_WEB_GATEWAY'.
|
408
|
+
# Corresponds to the JSON property `gatewaySecurityPolicy`
|
409
|
+
# @return [String]
|
410
|
+
attr_accessor :gateway_security_policy
|
411
|
+
|
389
412
|
# Optional. Set of label tags associated with the Gateway resource.
|
390
413
|
# Corresponds to the JSON property `labels`
|
391
414
|
# @return [Hash<String,String>]
|
@@ -397,6 +420,13 @@ module Google
|
|
397
420
|
# @return [String]
|
398
421
|
attr_accessor :name
|
399
422
|
|
423
|
+
# Optional. The relative resource name identifying the VPC network that is using
|
424
|
+
# this configuration. For example: `projects/*/global/networks/network-1`.
|
425
|
+
# Currently, this field is specific to gateways of type 'SECURE_WEB_GATEWAY'.
|
426
|
+
# Corresponds to the JSON property `network`
|
427
|
+
# @return [String]
|
428
|
+
attr_accessor :network
|
429
|
+
|
400
430
|
# Required. One or more port numbers (1-65535), on which the Gateway will
|
401
431
|
# receive traffic. The proxy binds to the specified ports. Gateways of type '
|
402
432
|
# SECURE_WEB_GATEWAY' are limited to 1 port. Gateways of type 'OPEN_MESH' listen
|
@@ -425,6 +455,14 @@ module Google
|
|
425
455
|
# @return [String]
|
426
456
|
attr_accessor :server_tls_policy
|
427
457
|
|
458
|
+
# Optional. The relative resource name identifying the subnetwork in which this
|
459
|
+
# SWG is allocated. For example: `projects/*/regions/us-central1/subnetworks/
|
460
|
+
# network-1` Currently, this field is specific to gateways of type '
|
461
|
+
# SECURE_WEB_GATEWAY".
|
462
|
+
# Corresponds to the JSON property `subnetwork`
|
463
|
+
# @return [String]
|
464
|
+
attr_accessor :subnetwork
|
465
|
+
|
428
466
|
# Immutable. The type of the customer managed gateway. This field is required.
|
429
467
|
# If unspecified, an error is returned.
|
430
468
|
# Corresponds to the JSON property `type`
|
@@ -442,14 +480,19 @@ module Google
|
|
442
480
|
|
443
481
|
# Update properties of this object
|
444
482
|
def update!(**args)
|
483
|
+
@addresses = args[:addresses] if args.key?(:addresses)
|
484
|
+
@certificate_urls = args[:certificate_urls] if args.key?(:certificate_urls)
|
445
485
|
@create_time = args[:create_time] if args.key?(:create_time)
|
446
486
|
@description = args[:description] if args.key?(:description)
|
487
|
+
@gateway_security_policy = args[:gateway_security_policy] if args.key?(:gateway_security_policy)
|
447
488
|
@labels = args[:labels] if args.key?(:labels)
|
448
489
|
@name = args[:name] if args.key?(:name)
|
490
|
+
@network = args[:network] if args.key?(:network)
|
449
491
|
@ports = args[:ports] if args.key?(:ports)
|
450
492
|
@scope = args[:scope] if args.key?(:scope)
|
451
493
|
@self_link = args[:self_link] if args.key?(:self_link)
|
452
494
|
@server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
|
495
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
453
496
|
@type = args[:type] if args.key?(:type)
|
454
497
|
@update_time = args[:update_time] if args.key?(:update_time)
|
455
498
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1beta1
|
18
18
|
# Version of the google-apis-networkservices_v1beta1 gem
|
19
|
-
GEM_VERSION = "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.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230323"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -521,14 +521,19 @@ module Google
|
|
521
521
|
class Gateway
|
522
522
|
# @private
|
523
523
|
class Representation < Google::Apis::Core::JsonRepresentation
|
524
|
+
collection :addresses, as: 'addresses'
|
525
|
+
collection :certificate_urls, as: 'certificateUrls'
|
524
526
|
property :create_time, as: 'createTime'
|
525
527
|
property :description, as: 'description'
|
528
|
+
property :gateway_security_policy, as: 'gatewaySecurityPolicy'
|
526
529
|
hash :labels, as: 'labels'
|
527
530
|
property :name, as: 'name'
|
531
|
+
property :network, as: 'network'
|
528
532
|
collection :ports, as: 'ports'
|
529
533
|
property :scope, as: 'scope'
|
530
534
|
property :self_link, as: 'selfLink'
|
531
535
|
property :server_tls_policy, as: 'serverTlsPolicy'
|
536
|
+
property :subnetwork, as: 'subnetwork'
|
532
537
|
property :type, as: 'type'
|
533
538
|
property :update_time, as: 'updateTime'
|
534
539
|
end
|
@@ -1486,13 +1486,7 @@ module Google
|
|
1486
1486
|
end
|
1487
1487
|
|
1488
1488
|
# Lists operations that match the specified filter in the request. If the server
|
1489
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
1490
|
-
# binding allows API services to override the binding to use different resource
|
1491
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
1492
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
1493
|
-
# service configuration. For backwards compatibility, the default name includes
|
1494
|
-
# the operations collection id, however overriding users must ensure the name
|
1495
|
-
# binding is the parent resource, without the operations collection id.
|
1489
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
1496
1490
|
# @param [String] name
|
1497
1491
|
# The name of the operation's parent resource.
|
1498
1492
|
# @param [String] filter
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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: 2023-
|
11
|
+
date: 2023-04-02 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-networkservices_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.24.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|