google-apis-networksecurity_v1 0.19.0 → 0.21.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a67f258627df0858a61ea93b3b0bf09621d87f66f6e38747efcbc5e2b324d96
4
- data.tar.gz: 3d66ceb857c9c21e97f527f58187e9bc2ba4583d05986e1540edb7ea88bd3e4d
3
+ metadata.gz: 77f25c811809a75584c1c96e30d24c08cd5b149e154ae48964d3bded2b9a3ad4
4
+ data.tar.gz: b97ee651a63285795654b78dd229413bf00024cb6ffd344a71ac6714b2c306bb
5
5
  SHA512:
6
- metadata.gz: d5dfd28817e2283ec4d15b498c698e4e3660ffbde82796cd776f5e8bd88f4a4d8c67d4644d5e38f6883f94b6d6de9e980c0b18d42ad1b97d02e14f9d9663a2b5
7
- data.tar.gz: 1b46578e218d6c9399256618d6c0b02b84b35126ef475879a31b60e6aeb215423f4101970f6fe6b1439c02b61779e00e8ac0c9324d0bb4ba7bd85be9094b88cf
6
+ metadata.gz: f268eb53135595a7a5305278023de7581482e8a5df71c58631f7f3a67b374a4f5990bb433fcca7706a29a5d8a95dee4ee140858e8fd528db4d0a575845ec60c6
7
+ data.tar.gz: 855001b86fe2868fb2484f526773a02f5efa803bd30432e171a38b2756a27dd38c89741f55fa1817b64f4f4d496f0d69115a557fabfc591162e6cfcdee2e9bcf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networksecurity_v1
2
2
 
3
+ ### v0.21.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230710
6
+
7
+ ### v0.20.0 (2023-05-21)
8
+
9
+ * Regenerated from discovery document revision 20230511
10
+
3
11
  ### v0.19.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230420
@@ -22,6 +22,109 @@ module Google
22
22
  module Apis
23
23
  module NetworksecurityV1
24
24
 
25
+ # Request used by the AddAddressGroupItems method.
26
+ class AddAddressGroupItemsRequest
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Required. List of items to add.
30
+ # Corresponds to the JSON property `items`
31
+ # @return [Array<String>]
32
+ attr_accessor :items
33
+
34
+ # Optional. An optional request ID to identify requests. Specify a unique
35
+ # request ID so that if you must retry your request, the server will know to
36
+ # ignore the request if it has already been completed. The server will guarantee
37
+ # that for at least 60 minutes since the first request. For example, consider a
38
+ # situation where you make an initial request and the request times out. If you
39
+ # make the request again with the same request ID, the server can check if
40
+ # original operation with the same request ID was received, and if so, will
41
+ # ignore the second request. This prevents clients from accidentally creating
42
+ # duplicate commitments. The request ID must be a valid UUID with the exception
43
+ # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
44
+ # Corresponds to the JSON property `requestId`
45
+ # @return [String]
46
+ attr_accessor :request_id
47
+
48
+ def initialize(**args)
49
+ update!(**args)
50
+ end
51
+
52
+ # Update properties of this object
53
+ def update!(**args)
54
+ @items = args[:items] if args.key?(:items)
55
+ @request_id = args[:request_id] if args.key?(:request_id)
56
+ end
57
+ end
58
+
59
+ # AddressGroup is a resource that specifies how a collection of IP/DNS used in
60
+ # Firewall Policy.
61
+ class AddressGroup
62
+ include Google::Apis::Core::Hashable
63
+
64
+ # Required. Capacity of the Address Group
65
+ # Corresponds to the JSON property `capacity`
66
+ # @return [Fixnum]
67
+ attr_accessor :capacity
68
+
69
+ # Output only. The timestamp when the resource was created.
70
+ # Corresponds to the JSON property `createTime`
71
+ # @return [String]
72
+ attr_accessor :create_time
73
+
74
+ # Optional. Free-text description of the resource.
75
+ # Corresponds to the JSON property `description`
76
+ # @return [String]
77
+ attr_accessor :description
78
+
79
+ # Optional. List of items.
80
+ # Corresponds to the JSON property `items`
81
+ # @return [Array<String>]
82
+ attr_accessor :items
83
+
84
+ # Optional. Set of label tags associated with the AddressGroup resource.
85
+ # Corresponds to the JSON property `labels`
86
+ # @return [Hash<String,String>]
87
+ attr_accessor :labels
88
+
89
+ # Required. Name of the AddressGroup resource. It matches pattern `projects/*/
90
+ # locations/`location`/addressGroups/`.
91
+ # Corresponds to the JSON property `name`
92
+ # @return [String]
93
+ attr_accessor :name
94
+
95
+ # Output only. Server-defined fully-qualified URL for this resource.
96
+ # Corresponds to the JSON property `selfLink`
97
+ # @return [String]
98
+ attr_accessor :self_link
99
+
100
+ # Required. The type of the Address Group. Possible values are "IPv4" or "IPV6".
101
+ # Corresponds to the JSON property `type`
102
+ # @return [String]
103
+ attr_accessor :type
104
+
105
+ # Output only. The timestamp when the resource was updated.
106
+ # Corresponds to the JSON property `updateTime`
107
+ # @return [String]
108
+ attr_accessor :update_time
109
+
110
+ def initialize(**args)
111
+ update!(**args)
112
+ end
113
+
114
+ # Update properties of this object
115
+ def update!(**args)
116
+ @capacity = args[:capacity] if args.key?(:capacity)
117
+ @create_time = args[:create_time] if args.key?(:create_time)
118
+ @description = args[:description] if args.key?(:description)
119
+ @items = args[:items] if args.key?(:items)
120
+ @labels = args[:labels] if args.key?(:labels)
121
+ @name = args[:name] if args.key?(:name)
122
+ @self_link = args[:self_link] if args.key?(:self_link)
123
+ @type = args[:type] if args.key?(:type)
124
+ @update_time = args[:update_time] if args.key?(:update_time)
125
+ end
126
+ end
127
+
25
128
  # AuthorizationPolicy is a resource that specifies how a server should authorize
26
129
  # incoming connections. This resource in itself does not change the
27
130
  # configuration unless it's attached to a target https proxy or endpoint config
@@ -190,6 +293,40 @@ module Google
190
293
  end
191
294
  end
192
295
 
296
+ # Request used by the CloneAddressGroupItems method.
297
+ class CloneAddressGroupItemsRequest
298
+ include Google::Apis::Core::Hashable
299
+
300
+ # Optional. An optional request ID to identify requests. Specify a unique
301
+ # request ID so that if you must retry your request, the server will know to
302
+ # ignore the request if it has already been completed. The server will guarantee
303
+ # that for at least 60 minutes since the first request. For example, consider a
304
+ # situation where you make an initial request and the request times out. If you
305
+ # make the request again with the same request ID, the server can check if
306
+ # original operation with the same request ID was received, and if so, will
307
+ # ignore the second request. This prevents clients from accidentally creating
308
+ # duplicate commitments. The request ID must be a valid UUID with the exception
309
+ # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
310
+ # Corresponds to the JSON property `requestId`
311
+ # @return [String]
312
+ attr_accessor :request_id
313
+
314
+ # Required. Source address group to clone items from.
315
+ # Corresponds to the JSON property `sourceAddressGroup`
316
+ # @return [String]
317
+ attr_accessor :source_address_group
318
+
319
+ def initialize(**args)
320
+ update!(**args)
321
+ end
322
+
323
+ # Update properties of this object
324
+ def update!(**args)
325
+ @request_id = args[:request_id] if args.key?(:request_id)
326
+ @source_address_group = args[:source_address_group] if args.key?(:source_address_group)
327
+ end
328
+ end
329
+
193
330
  # Specification of traffic destination attributes.
194
331
  class Destination
195
332
  include Google::Apis::Core::Hashable
@@ -845,6 +982,85 @@ module Google
845
982
  end
846
983
  end
847
984
 
985
+ # Response of the ListAddressGroupReferences method.
986
+ class ListAddressGroupReferencesResponse
987
+ include Google::Apis::Core::Hashable
988
+
989
+ # A list of references that matches the specified filter in the request.
990
+ # Corresponds to the JSON property `addressGroupReferences`
991
+ # @return [Array<Google::Apis::NetworksecurityV1::ListAddressGroupReferencesResponseAddressGroupReference>]
992
+ attr_accessor :address_group_references
993
+
994
+ # If there might be more results than those appearing in this response, then `
995
+ # next_page_token` is included. To get the next set of results, call this method
996
+ # again using the value of `next_page_token` as `page_token`.
997
+ # Corresponds to the JSON property `nextPageToken`
998
+ # @return [String]
999
+ attr_accessor :next_page_token
1000
+
1001
+ def initialize(**args)
1002
+ update!(**args)
1003
+ end
1004
+
1005
+ # Update properties of this object
1006
+ def update!(**args)
1007
+ @address_group_references = args[:address_group_references] if args.key?(:address_group_references)
1008
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1009
+ end
1010
+ end
1011
+
1012
+ # The Reference of AddressGroup.
1013
+ class ListAddressGroupReferencesResponseAddressGroupReference
1014
+ include Google::Apis::Core::Hashable
1015
+
1016
+ # FirewallPolicy that is using the Address Group.
1017
+ # Corresponds to the JSON property `firewallPolicy`
1018
+ # @return [String]
1019
+ attr_accessor :firewall_policy
1020
+
1021
+ # Rule priority of the FirewallPolicy that is using the Address Group.
1022
+ # Corresponds to the JSON property `rulePriority`
1023
+ # @return [Fixnum]
1024
+ attr_accessor :rule_priority
1025
+
1026
+ def initialize(**args)
1027
+ update!(**args)
1028
+ end
1029
+
1030
+ # Update properties of this object
1031
+ def update!(**args)
1032
+ @firewall_policy = args[:firewall_policy] if args.key?(:firewall_policy)
1033
+ @rule_priority = args[:rule_priority] if args.key?(:rule_priority)
1034
+ end
1035
+ end
1036
+
1037
+ # Response returned by the ListAddressGroups method.
1038
+ class ListAddressGroupsResponse
1039
+ include Google::Apis::Core::Hashable
1040
+
1041
+ # List of AddressGroups resources.
1042
+ # Corresponds to the JSON property `addressGroups`
1043
+ # @return [Array<Google::Apis::NetworksecurityV1::AddressGroup>]
1044
+ attr_accessor :address_groups
1045
+
1046
+ # If there might be more results than those appearing in this response, then `
1047
+ # next_page_token` is included. To get the next set of results, call this method
1048
+ # again using the value of `next_page_token` as `page_token`.
1049
+ # Corresponds to the JSON property `nextPageToken`
1050
+ # @return [String]
1051
+ attr_accessor :next_page_token
1052
+
1053
+ def initialize(**args)
1054
+ update!(**args)
1055
+ end
1056
+
1057
+ # Update properties of this object
1058
+ def update!(**args)
1059
+ @address_groups = args[:address_groups] if args.key?(:address_groups)
1060
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1061
+ end
1062
+ end
1063
+
848
1064
  # Response returned by the ListAuthorizationPolicies method.
849
1065
  class ListAuthorizationPoliciesResponse
850
1066
  include Google::Apis::Core::Hashable
@@ -1315,6 +1531,40 @@ module Google
1315
1531
  end
1316
1532
  end
1317
1533
 
1534
+ # Request used by the RemoveAddressGroupItems method.
1535
+ class RemoveAddressGroupItemsRequest
1536
+ include Google::Apis::Core::Hashable
1537
+
1538
+ # Required. List of items to remove.
1539
+ # Corresponds to the JSON property `items`
1540
+ # @return [Array<String>]
1541
+ attr_accessor :items
1542
+
1543
+ # Optional. An optional request ID to identify requests. Specify a unique
1544
+ # request ID so that if you must retry your request, the server will know to
1545
+ # ignore the request if it has already been completed. The server will guarantee
1546
+ # that for at least 60 minutes since the first request. For example, consider a
1547
+ # situation where you make an initial request and the request times out. If you
1548
+ # make the request again with the same request ID, the server can check if
1549
+ # original operation with the same request ID was received, and if so, will
1550
+ # ignore the second request. This prevents clients from accidentally creating
1551
+ # duplicate commitments. The request ID must be a valid UUID with the exception
1552
+ # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
1553
+ # Corresponds to the JSON property `requestId`
1554
+ # @return [String]
1555
+ attr_accessor :request_id
1556
+
1557
+ def initialize(**args)
1558
+ update!(**args)
1559
+ end
1560
+
1561
+ # Update properties of this object
1562
+ def update!(**args)
1563
+ @items = args[:items] if args.key?(:items)
1564
+ @request_id = args[:request_id] if args.key?(:request_id)
1565
+ end
1566
+ end
1567
+
1318
1568
  # Specification of rules.
1319
1569
  class Rule
1320
1570
  include Google::Apis::Core::Hashable
@@ -1516,11 +1766,44 @@ module Google
1516
1766
  # @return [String]
1517
1767
  attr_accessor :create_time
1518
1768
 
1769
+ # Optional. List of custom TLS cipher suites selected. This field is valid only
1770
+ # if the selected tls_feature_profile is CUSTOM. The compute.SslPoliciesService.
1771
+ # ListAvailableFeatures method returns the set of features that can be specified
1772
+ # in this list. Note that Secure Web Proxy does not yet honor this field.
1773
+ # Corresponds to the JSON property `customTlsFeatures`
1774
+ # @return [Array<String>]
1775
+ attr_accessor :custom_tls_features
1776
+
1519
1777
  # Optional. Free-text description of the resource.
1520
1778
  # Corresponds to the JSON property `description`
1521
1779
  # @return [String]
1522
1780
  attr_accessor :description
1523
1781
 
1782
+ # Optional. If FALSE (the default), use our default set of public CAs in
1783
+ # addition to any CAs specified in trust_config. These public CAs are currently
1784
+ # based on the Mozilla Root Program and are subject to change over time. If TRUE,
1785
+ # do not accept our default set of public CAs. Only CAs specified in
1786
+ # trust_config will be accepted. This defaults to FALSE (use public CAs in
1787
+ # addition to trust_config) for backwards compatibility, but trusting public
1788
+ # root CAs is *not recommended* unless the traffic in question is outbound to
1789
+ # public web servers. When possible, prefer setting this to "false" and
1790
+ # explicitly specifying trusted CAs and certificates in a TrustConfig. Note that
1791
+ # Secure Web Proxy does not yet honor this field.
1792
+ # Corresponds to the JSON property `excludePublicCaSet`
1793
+ # @return [Boolean]
1794
+ attr_accessor :exclude_public_ca_set
1795
+ alias_method :exclude_public_ca_set?, :exclude_public_ca_set
1796
+
1797
+ # Optional. Minimum TLS version that the firewall should use when negotiating
1798
+ # connections with both clients and servers. If this is not set, then the
1799
+ # default value is to allow the broadest set of clients and servers (TLS 1.0 or
1800
+ # higher). Setting this to more restrictive values may improve security, but may
1801
+ # also prevent the firewall from connecting to some clients or servers. Note
1802
+ # that Secure Web Proxy does not yet honor this field.
1803
+ # Corresponds to the JSON property `minTlsVersion`
1804
+ # @return [String]
1805
+ attr_accessor :min_tls_version
1806
+
1524
1807
  # Required. Name of the resource. Name is of the form projects/`project`/
1525
1808
  # locations/`location`/tlsInspectionPolicies/`tls_inspection_policy`
1526
1809
  # tls_inspection_policy should match the pattern:(^[a-z]([a-z0-9-]`0,61`[a-z0-9])
@@ -1529,6 +1812,25 @@ module Google
1529
1812
  # @return [String]
1530
1813
  attr_accessor :name
1531
1814
 
1815
+ # Optional. The selected Profile. If this is not set, then the default value is
1816
+ # to allow the broadest set of clients and servers ("PROFILE_COMPATIBLE").
1817
+ # Setting this to more restrictive values may improve security, but may also
1818
+ # prevent the TLS inspection proxy from connecting to some clients or servers.
1819
+ # Note that Secure Web Proxy does not yet honor this field.
1820
+ # Corresponds to the JSON property `tlsFeatureProfile`
1821
+ # @return [String]
1822
+ attr_accessor :tls_feature_profile
1823
+
1824
+ # Optional. A TrustConfig resource used when making a connection to the TLS
1825
+ # server. This is a relative resource path following the form "projects/`project`
1826
+ # /locations/`location`/trustConfigs/`trust_config`". This is necessary to
1827
+ # intercept TLS connections to servers with certificates signed by a private CA
1828
+ # or self-signed certificates. Note that Secure Web Proxy does not yet honor
1829
+ # this field.
1830
+ # Corresponds to the JSON property `trustConfig`
1831
+ # @return [String]
1832
+ attr_accessor :trust_config
1833
+
1532
1834
  # Output only. The timestamp when the resource was updated.
1533
1835
  # Corresponds to the JSON property `updateTime`
1534
1836
  # @return [String]
@@ -1542,8 +1844,13 @@ module Google
1542
1844
  def update!(**args)
1543
1845
  @ca_pool = args[:ca_pool] if args.key?(:ca_pool)
1544
1846
  @create_time = args[:create_time] if args.key?(:create_time)
1847
+ @custom_tls_features = args[:custom_tls_features] if args.key?(:custom_tls_features)
1545
1848
  @description = args[:description] if args.key?(:description)
1849
+ @exclude_public_ca_set = args[:exclude_public_ca_set] if args.key?(:exclude_public_ca_set)
1850
+ @min_tls_version = args[:min_tls_version] if args.key?(:min_tls_version)
1546
1851
  @name = args[:name] if args.key?(:name)
1852
+ @tls_feature_profile = args[:tls_feature_profile] if args.key?(:tls_feature_profile)
1853
+ @trust_config = args[:trust_config] if args.key?(:trust_config)
1547
1854
  @update_time = args[:update_time] if args.key?(:update_time)
1548
1855
  end
1549
1856
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworksecurityV1
18
18
  # Version of the google-apis-networksecurity_v1 gem
19
- GEM_VERSION = "0.19.0"
19
+ GEM_VERSION = "0.21.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 = "20230420"
25
+ REVISION = "20230710"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,18 @@ module Google
22
22
  module Apis
23
23
  module NetworksecurityV1
24
24
 
25
+ class AddAddressGroupItemsRequest
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class AddressGroup
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
25
37
  class AuthorizationPolicy
26
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
39
 
@@ -46,6 +58,12 @@ module Google
46
58
  include Google::Apis::Core::JsonObjectSupport
47
59
  end
48
60
 
61
+ class CloneAddressGroupItemsRequest
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
49
67
  class Destination
50
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
69
 
@@ -136,6 +154,24 @@ module Google
136
154
  include Google::Apis::Core::JsonObjectSupport
137
155
  end
138
156
 
157
+ class ListAddressGroupReferencesResponse
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class ListAddressGroupReferencesResponseAddressGroupReference
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class ListAddressGroupsResponse
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
139
175
  class ListAuthorizationPoliciesResponse
140
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
177
 
@@ -214,6 +250,12 @@ module Google
214
250
  include Google::Apis::Core::JsonObjectSupport
215
251
  end
216
252
 
253
+ class RemoveAddressGroupItemsRequest
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
217
259
  class Rule
218
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
261
 
@@ -256,6 +298,29 @@ module Google
256
298
  include Google::Apis::Core::JsonObjectSupport
257
299
  end
258
300
 
301
+ class AddAddressGroupItemsRequest
302
+ # @private
303
+ class Representation < Google::Apis::Core::JsonRepresentation
304
+ collection :items, as: 'items'
305
+ property :request_id, as: 'requestId'
306
+ end
307
+ end
308
+
309
+ class AddressGroup
310
+ # @private
311
+ class Representation < Google::Apis::Core::JsonRepresentation
312
+ property :capacity, as: 'capacity'
313
+ property :create_time, as: 'createTime'
314
+ property :description, as: 'description'
315
+ collection :items, as: 'items'
316
+ hash :labels, as: 'labels'
317
+ property :name, as: 'name'
318
+ property :self_link, as: 'selfLink'
319
+ property :type, as: 'type'
320
+ property :update_time, as: 'updateTime'
321
+ end
322
+ end
323
+
259
324
  class AuthorizationPolicy
260
325
  # @private
261
326
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -299,6 +364,14 @@ module Google
299
364
  end
300
365
  end
301
366
 
367
+ class CloneAddressGroupItemsRequest
368
+ # @private
369
+ class Representation < Google::Apis::Core::JsonRepresentation
370
+ property :request_id, as: 'requestId'
371
+ property :source_address_group, as: 'sourceAddressGroup'
372
+ end
373
+ end
374
+
302
375
  class Destination
303
376
  # @private
304
377
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -440,6 +513,32 @@ module Google
440
513
  end
441
514
  end
442
515
 
516
+ class ListAddressGroupReferencesResponse
517
+ # @private
518
+ class Representation < Google::Apis::Core::JsonRepresentation
519
+ collection :address_group_references, as: 'addressGroupReferences', class: Google::Apis::NetworksecurityV1::ListAddressGroupReferencesResponseAddressGroupReference, decorator: Google::Apis::NetworksecurityV1::ListAddressGroupReferencesResponseAddressGroupReference::Representation
520
+
521
+ property :next_page_token, as: 'nextPageToken'
522
+ end
523
+ end
524
+
525
+ class ListAddressGroupReferencesResponseAddressGroupReference
526
+ # @private
527
+ class Representation < Google::Apis::Core::JsonRepresentation
528
+ property :firewall_policy, as: 'firewallPolicy'
529
+ property :rule_priority, as: 'rulePriority'
530
+ end
531
+ end
532
+
533
+ class ListAddressGroupsResponse
534
+ # @private
535
+ class Representation < Google::Apis::Core::JsonRepresentation
536
+ collection :address_groups, as: 'addressGroups', class: Google::Apis::NetworksecurityV1::AddressGroup, decorator: Google::Apis::NetworksecurityV1::AddressGroup::Representation
537
+
538
+ property :next_page_token, as: 'nextPageToken'
539
+ end
540
+ end
541
+
443
542
  class ListAuthorizationPoliciesResponse
444
543
  # @private
445
544
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -571,6 +670,14 @@ module Google
571
670
  end
572
671
  end
573
672
 
673
+ class RemoveAddressGroupItemsRequest
674
+ # @private
675
+ class Representation < Google::Apis::Core::JsonRepresentation
676
+ collection :items, as: 'items'
677
+ property :request_id, as: 'requestId'
678
+ end
679
+ end
680
+
574
681
  class Rule
575
682
  # @private
576
683
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -619,8 +726,13 @@ module Google
619
726
  class Representation < Google::Apis::Core::JsonRepresentation
620
727
  property :ca_pool, as: 'caPool'
621
728
  property :create_time, as: 'createTime'
729
+ collection :custom_tls_features, as: 'customTlsFeatures'
622
730
  property :description, as: 'description'
731
+ property :exclude_public_ca_set, as: 'excludePublicCaSet'
732
+ property :min_tls_version, as: 'minTlsVersion'
623
733
  property :name, as: 'name'
734
+ property :tls_feature_profile, as: 'tlsFeatureProfile'
735
+ property :trust_config, as: 'trustConfig'
624
736
  property :update_time, as: 'updateTime'
625
737
  end
626
738
  end