google-apis-networkservices_v1 0.22.0 → 0.23.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: 9ed25c9e5d31168477c3f27303e7e7b2f0b15660fbecb314688139697288207b
4
- data.tar.gz: d23ccb2ea4fd742dab148dbbcb5dc5d36889a9bcc0648e1654dab7f99608d387
3
+ metadata.gz: acc9eb8bec8c9cd675c9ad4b292e090dc3c2d5a33e49fba04764a9f646062904
4
+ data.tar.gz: 729294486996fb8e1cc9baaf94f1c6d6802d9553293eea5083f9bcbefb4b78e7
5
5
  SHA512:
6
- metadata.gz: 77ec53d731c7a4c1a6b79b36caf872b79bcb89545eeda3075854312660fd33365f25e7a938799f2f0541506a25652876a99bc1c3c18e61a83d0a3e99dbcc1f97
7
- data.tar.gz: 6e7812050737d64020e54a1abb7b36d6f256dfe8fd4b886d61891cfd79300c60f766a20f9f5949e83d46bffd0f27593292536075d4389cc3d50c1991582fbbdc
6
+ metadata.gz: 31d2fca386d7b45b8423f9eb1d2594d6c81ca58781114e82a024b408475dcb5042a494dd09d73c64af105ce68961e0f3cba8c1caeccb6852bd52e40517f0acb3
7
+ data.tar.gz: a4c4bff1c291956a00705ebce3b1ee6c419be6021824d514f93bb84c4bc9ff25b18fc510455bec1c1285f0db01d1403e2ad927172efb39a7477d29fd59983f45
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkservices_v1
2
2
 
3
+ ### v0.23.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230323
6
+
3
7
  ### v0.22.0 (2023-03-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20230227
@@ -441,6 +441,21 @@ module Google
441
441
  class Gateway
442
442
  include Google::Apis::Core::Hashable
443
443
 
444
+ # Optional. Zero or one IPv4-address on which the Gateway will receive the
445
+ # traffic. When no address is provided, an IP from the subnetwork is allocated
446
+ # This field only applies to gateways of type 'SECURE_WEB_GATEWAY'. Gateways of
447
+ # type 'OPEN_MESH' listen on 0.0.0.0.
448
+ # Corresponds to the JSON property `addresses`
449
+ # @return [Array<String>]
450
+ attr_accessor :addresses
451
+
452
+ # Optional. A fully-qualified Certificates URL reference. The proxy presents a
453
+ # Certificate (selected based on SNI) when establishing a TLS connection. This
454
+ # feature only applies to gateways of type 'SECURE_WEB_GATEWAY'.
455
+ # Corresponds to the JSON property `certificateUrls`
456
+ # @return [Array<String>]
457
+ attr_accessor :certificate_urls
458
+
444
459
  # Output only. The timestamp when the resource was created.
445
460
  # Corresponds to the JSON property `createTime`
446
461
  # @return [String]
@@ -451,6 +466,14 @@ module Google
451
466
  # @return [String]
452
467
  attr_accessor :description
453
468
 
469
+ # Optional. A fully-qualified GatewaySecurityPolicy URL reference. Defines how a
470
+ # server should apply security policy to inbound (VM to Proxy) initiated
471
+ # connections. For example: `projects/*/locations/*/gatewaySecurityPolicies/swg-
472
+ # policy`. This policy is specific to gateways of type 'SECURE_WEB_GATEWAY'.
473
+ # Corresponds to the JSON property `gatewaySecurityPolicy`
474
+ # @return [String]
475
+ attr_accessor :gateway_security_policy
476
+
454
477
  # Optional. Set of label tags associated with the Gateway resource.
455
478
  # Corresponds to the JSON property `labels`
456
479
  # @return [Hash<String,String>]
@@ -462,6 +485,13 @@ module Google
462
485
  # @return [String]
463
486
  attr_accessor :name
464
487
 
488
+ # Optional. The relative resource name identifying the VPC network that is using
489
+ # this configuration. For example: `projects/*/global/networks/network-1`.
490
+ # Currently, this field is specific to gateways of type 'SECURE_WEB_GATEWAY'.
491
+ # Corresponds to the JSON property `network`
492
+ # @return [String]
493
+ attr_accessor :network
494
+
465
495
  # Required. One or more port numbers (1-65535), on which the Gateway will
466
496
  # receive traffic. The proxy binds to the specified ports. Gateways of type '
467
497
  # SECURE_WEB_GATEWAY' are limited to 1 port. Gateways of type 'OPEN_MESH' listen
@@ -490,6 +520,14 @@ module Google
490
520
  # @return [String]
491
521
  attr_accessor :server_tls_policy
492
522
 
523
+ # Optional. The relative resource name identifying the subnetwork in which this
524
+ # SWG is allocated. For example: `projects/*/regions/us-central1/subnetworks/
525
+ # network-1` Currently, this field is specific to gateways of type '
526
+ # SECURE_WEB_GATEWAY".
527
+ # Corresponds to the JSON property `subnetwork`
528
+ # @return [String]
529
+ attr_accessor :subnetwork
530
+
493
531
  # Immutable. The type of the customer managed gateway. This field is required.
494
532
  # If unspecified, an error is returned.
495
533
  # Corresponds to the JSON property `type`
@@ -507,14 +545,19 @@ module Google
507
545
 
508
546
  # Update properties of this object
509
547
  def update!(**args)
548
+ @addresses = args[:addresses] if args.key?(:addresses)
549
+ @certificate_urls = args[:certificate_urls] if args.key?(:certificate_urls)
510
550
  @create_time = args[:create_time] if args.key?(:create_time)
511
551
  @description = args[:description] if args.key?(:description)
552
+ @gateway_security_policy = args[:gateway_security_policy] if args.key?(:gateway_security_policy)
512
553
  @labels = args[:labels] if args.key?(:labels)
513
554
  @name = args[:name] if args.key?(:name)
555
+ @network = args[:network] if args.key?(:network)
514
556
  @ports = args[:ports] if args.key?(:ports)
515
557
  @scope = args[:scope] if args.key?(:scope)
516
558
  @self_link = args[:self_link] if args.key?(:self_link)
517
559
  @server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
560
+ @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
518
561
  @type = args[:type] if args.key?(:type)
519
562
  @update_time = args[:update_time] if args.key?(:update_time)
520
563
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkservicesV1
18
18
  # Version of the google-apis-networkservices_v1 gem
19
- GEM_VERSION = "0.22.0"
19
+ GEM_VERSION = "0.23.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 = "20230227"
25
+ REVISION = "20230323"
26
26
  end
27
27
  end
28
28
  end
@@ -538,14 +538,19 @@ module Google
538
538
  class Gateway
539
539
  # @private
540
540
  class Representation < Google::Apis::Core::JsonRepresentation
541
+ collection :addresses, as: 'addresses'
542
+ collection :certificate_urls, as: 'certificateUrls'
541
543
  property :create_time, as: 'createTime'
542
544
  property :description, as: 'description'
545
+ property :gateway_security_policy, as: 'gatewaySecurityPolicy'
543
546
  hash :labels, as: 'labels'
544
547
  property :name, as: 'name'
548
+ property :network, as: 'network'
545
549
  collection :ports, as: 'ports'
546
550
  property :scope, as: 'scope'
547
551
  property :self_link, as: 'selfLink'
548
552
  property :server_tls_policy, as: 'serverTlsPolicy'
553
+ property :subnetwork, as: 'subnetwork'
549
554
  property :type, as: 'type'
550
555
  property :update_time, as: 'updateTime'
551
556
  end
@@ -2454,13 +2454,7 @@ module Google
2454
2454
  end
2455
2455
 
2456
2456
  # Lists operations that match the specified filter in the request. If the server
2457
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
2458
- # binding allows API services to override the binding to use different resource
2459
- # name schemes, such as `users/*/operations`. To override the binding, API
2460
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
2461
- # service configuration. For backwards compatibility, the default name includes
2462
- # the operations collection id, however overriding users must ensure the name
2463
- # binding is the parent resource, without the operations collection id.
2457
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
2464
2458
  # @param [String] name
2465
2459
  # The name of the operation's parent resource.
2466
2460
  # @param [String] filter
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkservices_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.23.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-03-05 00:00:00.000000000 Z
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.23.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
63
63
  post_install_message:
64
64
  rdoc_options: []