google-apis-servicenetworking_v1beta 0.42.0 → 0.44.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: f6cace1b0296635c6bfe74bd75bee012eaef1a5175ae72e995296a644aec27e5
|
4
|
+
data.tar.gz: 0672c5488f88c434abb554b64a1b6c79062f252c0f49d25e6a0e41625f03b204
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31cd60a9b094add20873193b4a2079030775471334bcc0442c9e17e905cc5a345fef68d03c6d759843ffd5a10bd1b39f59cf1d8869b477a632496506673ffcc3
|
7
|
+
data.tar.gz: 70ea944015c1f805ce82898d8c0425f28285908fb63ace08876f90753c72e93898b9f42126c8e5862b8d770abd3f498f11c4ba6f3937c135e67cf7434856593e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1beta
|
2
2
|
|
3
|
+
### v0.44.0 (2023-11-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231119
|
6
|
+
|
7
|
+
### v0.43.0 (2023-11-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231015
|
10
|
+
|
3
11
|
### v0.42.0 (2023-08-06)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230802
|
@@ -2483,6 +2483,15 @@ module Google
|
|
2483
2483
|
class MethodSettings
|
2484
2484
|
include Google::Apis::Core::Hashable
|
2485
2485
|
|
2486
|
+
# List of top-level fields of the request message, that should be automatically
|
2487
|
+
# populated by the client libraries based on their (google.api.field_info).
|
2488
|
+
# format. Currently supported format: UUID4. Example of a YAML configuration:
|
2489
|
+
# publishing: method_settings: - selector: google.example.v1.ExampleService.
|
2490
|
+
# CreateExample auto_populated_fields: - request_id
|
2491
|
+
# Corresponds to the JSON property `autoPopulatedFields`
|
2492
|
+
# @return [Array<String>]
|
2493
|
+
attr_accessor :auto_populated_fields
|
2494
|
+
|
2486
2495
|
# Describes settings to use when generating API methods that use the long-
|
2487
2496
|
# running operation pattern. All default values below are from those used in the
|
2488
2497
|
# client library generators (e.g. [Java](https://github.com/googleapis/gapic-
|
@@ -2504,6 +2513,7 @@ module Google
|
|
2504
2513
|
|
2505
2514
|
# Update properties of this object
|
2506
2515
|
def update!(**args)
|
2516
|
+
@auto_populated_fields = args[:auto_populated_fields] if args.key?(:auto_populated_fields)
|
2507
2517
|
@long_running = args[:long_running] if args.key?(:long_running)
|
2508
2518
|
@selector = args[:selector] if args.key?(:selector)
|
2509
2519
|
end
|
@@ -4393,6 +4403,29 @@ module Google
|
|
4393
4403
|
@skip_service_control = args[:skip_service_control] if args.key?(:skip_service_control)
|
4394
4404
|
end
|
4395
4405
|
end
|
4406
|
+
|
4407
|
+
# Response for the get VPC Service Controls request.
|
4408
|
+
class VpcServiceControls
|
4409
|
+
include Google::Apis::Core::Hashable
|
4410
|
+
|
4411
|
+
# Output only. Indicates whether the VPC Service Controls are enabled or
|
4412
|
+
# disabled for the connection. If the consumer called the
|
4413
|
+
# EnableVpcServiceControls method, then this is true. If the consumer called
|
4414
|
+
# DisableVpcServiceControls, then this is false. The default is false.
|
4415
|
+
# Corresponds to the JSON property `enabled`
|
4416
|
+
# @return [Boolean]
|
4417
|
+
attr_accessor :enabled
|
4418
|
+
alias_method :enabled?, :enabled
|
4419
|
+
|
4420
|
+
def initialize(**args)
|
4421
|
+
update!(**args)
|
4422
|
+
end
|
4423
|
+
|
4424
|
+
# Update properties of this object
|
4425
|
+
def update!(**args)
|
4426
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4427
|
+
end
|
4428
|
+
end
|
4396
4429
|
end
|
4397
4430
|
end
|
4398
4431
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1beta
|
18
18
|
# Version of the google-apis-servicenetworking_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.44.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 = "20231119"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -616,6 +616,12 @@ module Google
|
|
616
616
|
include Google::Apis::Core::JsonObjectSupport
|
617
617
|
end
|
618
618
|
|
619
|
+
class VpcServiceControls
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
|
+
|
622
|
+
include Google::Apis::Core::JsonObjectSupport
|
623
|
+
end
|
624
|
+
|
619
625
|
class AddDnsRecordSetMetadata
|
620
626
|
# @private
|
621
627
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1203,6 +1209,7 @@ module Google
|
|
1203
1209
|
class MethodSettings
|
1204
1210
|
# @private
|
1205
1211
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1212
|
+
collection :auto_populated_fields, as: 'autoPopulatedFields'
|
1206
1213
|
property :long_running, as: 'longRunning', class: Google::Apis::ServicenetworkingV1beta::LongRunning, decorator: Google::Apis::ServicenetworkingV1beta::LongRunning::Representation
|
1207
1214
|
|
1208
1215
|
property :selector, as: 'selector'
|
@@ -1642,6 +1649,13 @@ module Google
|
|
1642
1649
|
property :skip_service_control, as: 'skipServiceControl'
|
1643
1650
|
end
|
1644
1651
|
end
|
1652
|
+
|
1653
|
+
class VpcServiceControls
|
1654
|
+
# @private
|
1655
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1656
|
+
property :enabled, as: 'enabled'
|
1657
|
+
end
|
1658
|
+
end
|
1645
1659
|
end
|
1646
1660
|
end
|
1647
1661
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.44.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-11-26 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-servicenetworking_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.44.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
|
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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Service Networking API V1beta
|