google-apis-networksecurity_v1beta1 0.42.0 → 0.43.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/networksecurity_v1beta1/classes.rb +162 -11
- data/lib/google/apis/networksecurity_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networksecurity_v1beta1/representations.rb +71 -0
- data/lib/google/apis/networksecurity_v1beta1/service.rb +8 -1
- 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: de6a4069a2174812251b673ae706e817d8e1c0c7d9958f4fe94b5dbe2d757637
|
4
|
+
data.tar.gz: cd955a2a1d413b947ef3567b1a102547360c471405c4068da31daf43f99b26c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f37ee304c49bbaef2f86f5548b6003084db0280423b23957dea67cca53148c46ea95a7d374171c7071687bb3b04ddb3aa2dca21f8152089eaff60ddc104f22f
|
7
|
+
data.tar.gz: ace5d55ffbf56c2e5093ef2305e8fcc090d4e96b88805cd16c3369b3e5a50f2f1a74f695668bfa4154714d00b2e98446552f1195dde6474b490bfd6306d2efc9
|
data/CHANGELOG.md
CHANGED
@@ -1899,9 +1899,9 @@ module Google
|
|
1899
1899
|
# @return [String]
|
1900
1900
|
attr_accessor :description
|
1901
1901
|
|
1902
|
-
# Required. Immutable. The regional forwarding rule that fronts the
|
1903
|
-
#
|
1904
|
-
#
|
1902
|
+
# Required. Immutable. The regional forwarding rule that fronts the interceptors,
|
1903
|
+
# for example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
1904
|
+
# See https://google.aip.dev/124.
|
1905
1905
|
# Corresponds to the JSON property `forwardingRule`
|
1906
1906
|
# @return [String]
|
1907
1907
|
attr_accessor :forwarding_rule
|
@@ -1994,6 +1994,11 @@ module Google
|
|
1994
1994
|
# @return [Hash<String,String>]
|
1995
1995
|
attr_accessor :labels
|
1996
1996
|
|
1997
|
+
# Output only. The list of locations where the deployment group is present.
|
1998
|
+
# Corresponds to the JSON property `locations`
|
1999
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::InterceptLocation>]
|
2000
|
+
attr_accessor :locations
|
2001
|
+
|
1997
2002
|
# Immutable. Identifier. The resource name of this deployment group, for example:
|
1998
2003
|
# `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See
|
1999
2004
|
# https://google.aip.dev/122 for more details.
|
@@ -2044,6 +2049,7 @@ module Google
|
|
2044
2049
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2045
2050
|
@description = args[:description] if args.key?(:description)
|
2046
2051
|
@labels = args[:labels] if args.key?(:labels)
|
2052
|
+
@locations = args[:locations] if args.key?(:locations)
|
2047
2053
|
@name = args[:name] if args.key?(:name)
|
2048
2054
|
@nested_deployments = args[:nested_deployments] if args.key?(:nested_deployments)
|
2049
2055
|
@network = args[:network] if args.key?(:network)
|
@@ -2113,6 +2119,11 @@ module Google
|
|
2113
2119
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationDetails>]
|
2114
2120
|
attr_accessor :associations
|
2115
2121
|
|
2122
|
+
# The endpoint group's view of a connected deployment group.
|
2123
|
+
# Corresponds to the JSON property `connectedDeploymentGroup`
|
2124
|
+
# @return [Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupConnectedDeploymentGroup]
|
2125
|
+
attr_accessor :connected_deployment_group
|
2126
|
+
|
2116
2127
|
# Output only. The timestamp when the resource was created. See https://google.
|
2117
2128
|
# aip.dev/148#timestamps.
|
2118
2129
|
# Corresponds to the JSON property `createTime`
|
@@ -2125,9 +2136,9 @@ module Google
|
|
2125
2136
|
# @return [String]
|
2126
2137
|
attr_accessor :description
|
2127
2138
|
|
2128
|
-
# Immutable. The deployment group that this endpoint group is
|
2129
|
-
# example: `projects/123456789/locations/global/
|
2130
|
-
# See https://google.aip.dev/124.
|
2139
|
+
# Required. Immutable. The deployment group that this endpoint group is
|
2140
|
+
# connected to, for example: `projects/123456789/locations/global/
|
2141
|
+
# interceptDeploymentGroups/my-dg`. See https://google.aip.dev/124.
|
2131
2142
|
# Corresponds to the JSON property `interceptDeploymentGroup`
|
2132
2143
|
# @return [String]
|
2133
2144
|
attr_accessor :intercept_deployment_group
|
@@ -2173,6 +2184,7 @@ module Google
|
|
2173
2184
|
# Update properties of this object
|
2174
2185
|
def update!(**args)
|
2175
2186
|
@associations = args[:associations] if args.key?(:associations)
|
2187
|
+
@connected_deployment_group = args[:connected_deployment_group] if args.key?(:connected_deployment_group)
|
2176
2188
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2177
2189
|
@description = args[:description] if args.key?(:description)
|
2178
2190
|
@intercept_deployment_group = args[:intercept_deployment_group] if args.key?(:intercept_deployment_group)
|
@@ -2199,9 +2211,9 @@ module Google
|
|
2199
2211
|
# @return [String]
|
2200
2212
|
attr_accessor :create_time
|
2201
2213
|
|
2202
|
-
# Immutable. The endpoint group that this association is connected to,
|
2203
|
-
# example: `projects/123456789/locations/global/interceptEndpointGroups/my-
|
2204
|
-
# See https://google.aip.dev/124.
|
2214
|
+
# Required. Immutable. The endpoint group that this association is connected to,
|
2215
|
+
# for example: `projects/123456789/locations/global/interceptEndpointGroups/my-
|
2216
|
+
# eg`. See https://google.aip.dev/124.
|
2205
2217
|
# Corresponds to the JSON property `interceptEndpointGroup`
|
2206
2218
|
# @return [String]
|
2207
2219
|
attr_accessor :intercept_endpoint_group
|
@@ -2212,6 +2224,12 @@ module Google
|
|
2212
2224
|
# @return [Hash<String,String>]
|
2213
2225
|
attr_accessor :labels
|
2214
2226
|
|
2227
|
+
# Output only. The list of locations where the association is configured. This
|
2228
|
+
# information is retrieved from the linked endpoint group.
|
2229
|
+
# Corresponds to the JSON property `locations`
|
2230
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::InterceptLocation>]
|
2231
|
+
attr_accessor :locations
|
2232
|
+
|
2215
2233
|
# Output only. The list of locations where the association is present. This
|
2216
2234
|
# information is retrieved from the linked endpoint group, and not configured as
|
2217
2235
|
# part of the association itself.
|
@@ -2227,8 +2245,8 @@ module Google
|
|
2227
2245
|
# @return [String]
|
2228
2246
|
attr_accessor :name
|
2229
2247
|
|
2230
|
-
# Immutable. The VPC network that is associated. for example: `
|
2231
|
-
# 123456789/global/networks/my-network`. See https://google.aip.dev/124.
|
2248
|
+
# Required. Immutable. The VPC network that is associated. for example: `
|
2249
|
+
# projects/123456789/global/networks/my-network`. See https://google.aip.dev/124.
|
2232
2250
|
# Corresponds to the JSON property `network`
|
2233
2251
|
# @return [String]
|
2234
2252
|
attr_accessor :network
|
@@ -2262,6 +2280,7 @@ module Google
|
|
2262
2280
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2263
2281
|
@intercept_endpoint_group = args[:intercept_endpoint_group] if args.key?(:intercept_endpoint_group)
|
2264
2282
|
@labels = args[:labels] if args.key?(:labels)
|
2283
|
+
@locations = args[:locations] if args.key?(:locations)
|
2265
2284
|
@locations_details = args[:locations_details] if args.key?(:locations_details)
|
2266
2285
|
@name = args[:name] if args.key?(:name)
|
2267
2286
|
@network = args[:network] if args.key?(:network)
|
@@ -2331,6 +2350,58 @@ module Google
|
|
2331
2350
|
end
|
2332
2351
|
end
|
2333
2352
|
|
2353
|
+
# The endpoint group's view of a connected deployment group.
|
2354
|
+
class InterceptEndpointGroupConnectedDeploymentGroup
|
2355
|
+
include Google::Apis::Core::Hashable
|
2356
|
+
|
2357
|
+
# Output only. The list of locations where the deployment group is present.
|
2358
|
+
# Corresponds to the JSON property `locations`
|
2359
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::InterceptLocation>]
|
2360
|
+
attr_accessor :locations
|
2361
|
+
|
2362
|
+
# Output only. The connected deployment group's resource name, for example: `
|
2363
|
+
# projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See
|
2364
|
+
# https://google.aip.dev/124.
|
2365
|
+
# Corresponds to the JSON property `name`
|
2366
|
+
# @return [String]
|
2367
|
+
attr_accessor :name
|
2368
|
+
|
2369
|
+
def initialize(**args)
|
2370
|
+
update!(**args)
|
2371
|
+
end
|
2372
|
+
|
2373
|
+
# Update properties of this object
|
2374
|
+
def update!(**args)
|
2375
|
+
@locations = args[:locations] if args.key?(:locations)
|
2376
|
+
@name = args[:name] if args.key?(:name)
|
2377
|
+
end
|
2378
|
+
end
|
2379
|
+
|
2380
|
+
# Details about intercept in a specific cloud location.
|
2381
|
+
class InterceptLocation
|
2382
|
+
include Google::Apis::Core::Hashable
|
2383
|
+
|
2384
|
+
# Output only. The cloud location, e.g. "us-central1-a" or "asia-south1".
|
2385
|
+
# Corresponds to the JSON property `location`
|
2386
|
+
# @return [String]
|
2387
|
+
attr_accessor :location
|
2388
|
+
|
2389
|
+
# Output only. The current state of the association in this location.
|
2390
|
+
# Corresponds to the JSON property `state`
|
2391
|
+
# @return [String]
|
2392
|
+
attr_accessor :state
|
2393
|
+
|
2394
|
+
def initialize(**args)
|
2395
|
+
update!(**args)
|
2396
|
+
end
|
2397
|
+
|
2398
|
+
# Update properties of this object
|
2399
|
+
def update!(**args)
|
2400
|
+
@location = args[:location] if args.key?(:location)
|
2401
|
+
@state = args[:state] if args.key?(:state)
|
2402
|
+
end
|
2403
|
+
end
|
2404
|
+
|
2334
2405
|
# Response of the ListAddressGroupReferences method.
|
2335
2406
|
class ListAddressGroupReferencesResponse
|
2336
2407
|
include Google::Apis::Core::Hashable
|
@@ -3016,6 +3087,13 @@ module Google
|
|
3016
3087
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::ServerTlsPolicy>]
|
3017
3088
|
attr_accessor :server_tls_policies
|
3018
3089
|
|
3090
|
+
# Unreachable resources. Populated when the request opts into `
|
3091
|
+
# return_partial_success` and reading across collections e.g. when attempting to
|
3092
|
+
# list all resources across all supported locations.
|
3093
|
+
# Corresponds to the JSON property `unreachable`
|
3094
|
+
# @return [Array<String>]
|
3095
|
+
attr_accessor :unreachable
|
3096
|
+
|
3019
3097
|
def initialize(**args)
|
3020
3098
|
update!(**args)
|
3021
3099
|
end
|
@@ -3024,6 +3102,7 @@ module Google
|
|
3024
3102
|
def update!(**args)
|
3025
3103
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3026
3104
|
@server_tls_policies = args[:server_tls_policies] if args.key?(:server_tls_policies)
|
3105
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3027
3106
|
end
|
3028
3107
|
end
|
3029
3108
|
|
@@ -3293,6 +3372,11 @@ module Google
|
|
3293
3372
|
# @return [Hash<String,String>]
|
3294
3373
|
attr_accessor :labels
|
3295
3374
|
|
3375
|
+
# Output only. The list of locations where the deployment group is present.
|
3376
|
+
# Corresponds to the JSON property `locations`
|
3377
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::MirroringLocation>]
|
3378
|
+
attr_accessor :locations
|
3379
|
+
|
3296
3380
|
# Immutable. Identifier. The resource name of this deployment group, for example:
|
3297
3381
|
# `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See
|
3298
3382
|
# https://google.aip.dev/122 for more details.
|
@@ -3343,6 +3427,7 @@ module Google
|
|
3343
3427
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3344
3428
|
@description = args[:description] if args.key?(:description)
|
3345
3429
|
@labels = args[:labels] if args.key?(:labels)
|
3430
|
+
@locations = args[:locations] if args.key?(:locations)
|
3346
3431
|
@name = args[:name] if args.key?(:name)
|
3347
3432
|
@nested_deployments = args[:nested_deployments] if args.key?(:nested_deployments)
|
3348
3433
|
@network = args[:network] if args.key?(:network)
|
@@ -3412,6 +3497,12 @@ module Google
|
|
3412
3497
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociationDetails>]
|
3413
3498
|
attr_accessor :associations
|
3414
3499
|
|
3500
|
+
# Output only. List of details about the connected deployment groups to this
|
3501
|
+
# endpoint group.
|
3502
|
+
# Corresponds to the JSON property `connectedDeploymentGroups`
|
3503
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupConnectedDeploymentGroup>]
|
3504
|
+
attr_accessor :connected_deployment_groups
|
3505
|
+
|
3415
3506
|
# Output only. The timestamp when the resource was created. See https://google.
|
3416
3507
|
# aip.dev/148#timestamps.
|
3417
3508
|
# Corresponds to the JSON property `createTime`
|
@@ -3472,6 +3563,7 @@ module Google
|
|
3472
3563
|
# Update properties of this object
|
3473
3564
|
def update!(**args)
|
3474
3565
|
@associations = args[:associations] if args.key?(:associations)
|
3566
|
+
@connected_deployment_groups = args[:connected_deployment_groups] if args.key?(:connected_deployment_groups)
|
3475
3567
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3476
3568
|
@description = args[:description] if args.key?(:description)
|
3477
3569
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -3504,6 +3596,12 @@ module Google
|
|
3504
3596
|
# @return [Hash<String,String>]
|
3505
3597
|
attr_accessor :labels
|
3506
3598
|
|
3599
|
+
# Output only. The list of locations where the association is configured. This
|
3600
|
+
# information is retrieved from the linked endpoint group.
|
3601
|
+
# Corresponds to the JSON property `locations`
|
3602
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::MirroringLocation>]
|
3603
|
+
attr_accessor :locations
|
3604
|
+
|
3507
3605
|
# Output only. The list of locations where the association is present. This
|
3508
3606
|
# information is retrieved from the linked endpoint group, and not configured as
|
3509
3607
|
# part of the association itself.
|
@@ -3560,6 +3658,7 @@ module Google
|
|
3560
3658
|
def update!(**args)
|
3561
3659
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3562
3660
|
@labels = args[:labels] if args.key?(:labels)
|
3661
|
+
@locations = args[:locations] if args.key?(:locations)
|
3563
3662
|
@locations_details = args[:locations_details] if args.key?(:locations_details)
|
3564
3663
|
@mirroring_endpoint_group = args[:mirroring_endpoint_group] if args.key?(:mirroring_endpoint_group)
|
3565
3664
|
@name = args[:name] if args.key?(:name)
|
@@ -3630,6 +3729,58 @@ module Google
|
|
3630
3729
|
end
|
3631
3730
|
end
|
3632
3731
|
|
3732
|
+
# The endpoint group's view of a connected deployment group.
|
3733
|
+
class MirroringEndpointGroupConnectedDeploymentGroup
|
3734
|
+
include Google::Apis::Core::Hashable
|
3735
|
+
|
3736
|
+
# Output only. The list of locations where the deployment group is present.
|
3737
|
+
# Corresponds to the JSON property `locations`
|
3738
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::MirroringLocation>]
|
3739
|
+
attr_accessor :locations
|
3740
|
+
|
3741
|
+
# Output only. The connected deployment group's resource name, for example: `
|
3742
|
+
# projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See
|
3743
|
+
# https://google.aip.dev/124.
|
3744
|
+
# Corresponds to the JSON property `name`
|
3745
|
+
# @return [String]
|
3746
|
+
attr_accessor :name
|
3747
|
+
|
3748
|
+
def initialize(**args)
|
3749
|
+
update!(**args)
|
3750
|
+
end
|
3751
|
+
|
3752
|
+
# Update properties of this object
|
3753
|
+
def update!(**args)
|
3754
|
+
@locations = args[:locations] if args.key?(:locations)
|
3755
|
+
@name = args[:name] if args.key?(:name)
|
3756
|
+
end
|
3757
|
+
end
|
3758
|
+
|
3759
|
+
# Details about mirroring in a specific cloud location.
|
3760
|
+
class MirroringLocation
|
3761
|
+
include Google::Apis::Core::Hashable
|
3762
|
+
|
3763
|
+
# Output only. The cloud location, e.g. "us-central1-a" or "asia-south1".
|
3764
|
+
# Corresponds to the JSON property `location`
|
3765
|
+
# @return [String]
|
3766
|
+
attr_accessor :location
|
3767
|
+
|
3768
|
+
# Output only. The current state of the association in this location.
|
3769
|
+
# Corresponds to the JSON property `state`
|
3770
|
+
# @return [String]
|
3771
|
+
attr_accessor :state
|
3772
|
+
|
3773
|
+
def initialize(**args)
|
3774
|
+
update!(**args)
|
3775
|
+
end
|
3776
|
+
|
3777
|
+
# Update properties of this object
|
3778
|
+
def update!(**args)
|
3779
|
+
@location = args[:location] if args.key?(:location)
|
3780
|
+
@state = args[:state] if args.key?(:state)
|
3781
|
+
end
|
3782
|
+
end
|
3783
|
+
|
3633
3784
|
# This resource represents a long-running operation that is the result of a
|
3634
3785
|
# network API call.
|
3635
3786
|
class Operation
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworksecurityV1beta1
|
18
18
|
# Version of the google-apis-networksecurity_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250310"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -334,6 +334,18 @@ module Google
|
|
334
334
|
include Google::Apis::Core::JsonObjectSupport
|
335
335
|
end
|
336
336
|
|
337
|
+
class InterceptEndpointGroupConnectedDeploymentGroup
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
343
|
+
class InterceptLocation
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
337
349
|
class ListAddressGroupReferencesResponse
|
338
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
351
|
|
@@ -550,6 +562,18 @@ module Google
|
|
550
562
|
include Google::Apis::Core::JsonObjectSupport
|
551
563
|
end
|
552
564
|
|
565
|
+
class MirroringEndpointGroupConnectedDeploymentGroup
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
567
|
+
|
568
|
+
include Google::Apis::Core::JsonObjectSupport
|
569
|
+
end
|
570
|
+
|
571
|
+
class MirroringLocation
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
|
+
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
575
|
+
end
|
576
|
+
|
553
577
|
class Operation
|
554
578
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
579
|
|
@@ -1107,6 +1131,8 @@ module Google
|
|
1107
1131
|
property :create_time, as: 'createTime'
|
1108
1132
|
property :description, as: 'description'
|
1109
1133
|
hash :labels, as: 'labels'
|
1134
|
+
collection :locations, as: 'locations', class: Google::Apis::NetworksecurityV1beta1::InterceptLocation, decorator: Google::Apis::NetworksecurityV1beta1::InterceptLocation::Representation
|
1135
|
+
|
1110
1136
|
property :name, as: 'name'
|
1111
1137
|
collection :nested_deployments, as: 'nestedDeployments', class: Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroupDeployment, decorator: Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroupDeployment::Representation
|
1112
1138
|
|
@@ -1137,6 +1163,8 @@ module Google
|
|
1137
1163
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1138
1164
|
collection :associations, as: 'associations', class: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationDetails, decorator: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationDetails::Representation
|
1139
1165
|
|
1166
|
+
property :connected_deployment_group, as: 'connectedDeploymentGroup', class: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupConnectedDeploymentGroup, decorator: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupConnectedDeploymentGroup::Representation
|
1167
|
+
|
1140
1168
|
property :create_time, as: 'createTime'
|
1141
1169
|
property :description, as: 'description'
|
1142
1170
|
property :intercept_deployment_group, as: 'interceptDeploymentGroup'
|
@@ -1154,6 +1182,8 @@ module Google
|
|
1154
1182
|
property :create_time, as: 'createTime'
|
1155
1183
|
property :intercept_endpoint_group, as: 'interceptEndpointGroup'
|
1156
1184
|
hash :labels, as: 'labels'
|
1185
|
+
collection :locations, as: 'locations', class: Google::Apis::NetworksecurityV1beta1::InterceptLocation, decorator: Google::Apis::NetworksecurityV1beta1::InterceptLocation::Representation
|
1186
|
+
|
1157
1187
|
collection :locations_details, as: 'locationsDetails', class: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationLocationDetails, decorator: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationLocationDetails::Representation
|
1158
1188
|
|
1159
1189
|
property :name, as: 'name'
|
@@ -1181,6 +1211,23 @@ module Google
|
|
1181
1211
|
end
|
1182
1212
|
end
|
1183
1213
|
|
1214
|
+
class InterceptEndpointGroupConnectedDeploymentGroup
|
1215
|
+
# @private
|
1216
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1217
|
+
collection :locations, as: 'locations', class: Google::Apis::NetworksecurityV1beta1::InterceptLocation, decorator: Google::Apis::NetworksecurityV1beta1::InterceptLocation::Representation
|
1218
|
+
|
1219
|
+
property :name, as: 'name'
|
1220
|
+
end
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
class InterceptLocation
|
1224
|
+
# @private
|
1225
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1226
|
+
property :location, as: 'location'
|
1227
|
+
property :state, as: 'state'
|
1228
|
+
end
|
1229
|
+
end
|
1230
|
+
|
1184
1231
|
class ListAddressGroupReferencesResponse
|
1185
1232
|
# @private
|
1186
1233
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1403,6 +1450,7 @@ module Google
|
|
1403
1450
|
property :next_page_token, as: 'nextPageToken'
|
1404
1451
|
collection :server_tls_policies, as: 'serverTlsPolicies', class: Google::Apis::NetworksecurityV1beta1::ServerTlsPolicy, decorator: Google::Apis::NetworksecurityV1beta1::ServerTlsPolicy::Representation
|
1405
1452
|
|
1453
|
+
collection :unreachable, as: 'unreachable'
|
1406
1454
|
end
|
1407
1455
|
end
|
1408
1456
|
|
@@ -1470,6 +1518,8 @@ module Google
|
|
1470
1518
|
property :create_time, as: 'createTime'
|
1471
1519
|
property :description, as: 'description'
|
1472
1520
|
hash :labels, as: 'labels'
|
1521
|
+
collection :locations, as: 'locations', class: Google::Apis::NetworksecurityV1beta1::MirroringLocation, decorator: Google::Apis::NetworksecurityV1beta1::MirroringLocation::Representation
|
1522
|
+
|
1473
1523
|
property :name, as: 'name'
|
1474
1524
|
collection :nested_deployments, as: 'nestedDeployments', class: Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroupDeployment, decorator: Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroupDeployment::Representation
|
1475
1525
|
|
@@ -1500,6 +1550,8 @@ module Google
|
|
1500
1550
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1501
1551
|
collection :associations, as: 'associations', class: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociationDetails, decorator: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociationDetails::Representation
|
1502
1552
|
|
1553
|
+
collection :connected_deployment_groups, as: 'connectedDeploymentGroups', class: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupConnectedDeploymentGroup, decorator: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupConnectedDeploymentGroup::Representation
|
1554
|
+
|
1503
1555
|
property :create_time, as: 'createTime'
|
1504
1556
|
property :description, as: 'description'
|
1505
1557
|
hash :labels, as: 'labels'
|
@@ -1516,6 +1568,8 @@ module Google
|
|
1516
1568
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1517
1569
|
property :create_time, as: 'createTime'
|
1518
1570
|
hash :labels, as: 'labels'
|
1571
|
+
collection :locations, as: 'locations', class: Google::Apis::NetworksecurityV1beta1::MirroringLocation, decorator: Google::Apis::NetworksecurityV1beta1::MirroringLocation::Representation
|
1572
|
+
|
1519
1573
|
collection :locations_details, as: 'locationsDetails', class: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociationLocationDetails, decorator: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociationLocationDetails::Representation
|
1520
1574
|
|
1521
1575
|
property :mirroring_endpoint_group, as: 'mirroringEndpointGroup'
|
@@ -1544,6 +1598,23 @@ module Google
|
|
1544
1598
|
end
|
1545
1599
|
end
|
1546
1600
|
|
1601
|
+
class MirroringEndpointGroupConnectedDeploymentGroup
|
1602
|
+
# @private
|
1603
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1604
|
+
collection :locations, as: 'locations', class: Google::Apis::NetworksecurityV1beta1::MirroringLocation, decorator: Google::Apis::NetworksecurityV1beta1::MirroringLocation::Representation
|
1605
|
+
|
1606
|
+
property :name, as: 'name'
|
1607
|
+
end
|
1608
|
+
end
|
1609
|
+
|
1610
|
+
class MirroringLocation
|
1611
|
+
# @private
|
1612
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1613
|
+
property :location, as: 'location'
|
1614
|
+
property :state, as: 'state'
|
1615
|
+
end
|
1616
|
+
end
|
1617
|
+
|
1547
1618
|
class Operation
|
1548
1619
|
# @private
|
1549
1620
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5402,6 +5402,12 @@ module Google
|
|
5402
5402
|
# The value returned by the last `ListServerTlsPoliciesResponse` Indicates that
|
5403
5403
|
# this is a continuation of a prior `ListServerTlsPolicies` call, and that the
|
5404
5404
|
# system should return the next page of data.
|
5405
|
+
# @param [Boolean] return_partial_success
|
5406
|
+
# Optional. Setting this field to `true` will opt the request into returning the
|
5407
|
+
# resources that are reachable, and into including the names of those that were
|
5408
|
+
# unreachable in the [ListServerTlsPoliciesResponse.unreachable] field. This can
|
5409
|
+
# only be `true` when reading across collections e.g. when `parent` is set to `"
|
5410
|
+
# projects/example/locations/-"`.
|
5405
5411
|
# @param [String] fields
|
5406
5412
|
# Selector specifying which fields to include in a partial response.
|
5407
5413
|
# @param [String] quota_user
|
@@ -5419,13 +5425,14 @@ module Google
|
|
5419
5425
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5420
5426
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5421
5427
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5422
|
-
def list_project_location_server_tls_policies(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5428
|
+
def list_project_location_server_tls_policies(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5423
5429
|
command = make_simple_command(:get, 'v1beta1/{+parent}/serverTlsPolicies', options)
|
5424
5430
|
command.response_representation = Google::Apis::NetworksecurityV1beta1::ListServerTlsPoliciesResponse::Representation
|
5425
5431
|
command.response_class = Google::Apis::NetworksecurityV1beta1::ListServerTlsPoliciesResponse
|
5426
5432
|
command.params['parent'] = parent unless parent.nil?
|
5427
5433
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5428
5434
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5435
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
5429
5436
|
command.query['fields'] = fields unless fields.nil?
|
5430
5437
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5431
5438
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networksecurity_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.43.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|