google-apis-networksecurity_v1 0.35.0 → 0.37.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.
@@ -376,14 +376,8 @@ module Google
376
376
  include Google::Apis::Core::Hashable
377
377
 
378
378
  # Optional. A list of identities derived from the client's certificate. This
379
- # field will not match on a request unless mutual TLS is enabled for the
380
- # forwarding rule or Gateway. For Application Load Balancers, each identity is a
381
- # string whose value is matched against the URI SAN, or DNS SAN, or SPIFFE ID,
382
- # or the subject field in the client's certificate. For Cloud Service Mesh, each
383
- # identity is a string whose value is matched against the URI SAN, or DNS SAN,
384
- # or the subject field in the client's certificate. The match can be exact,
385
- # prefix, suffix, or a substring match. One of exact, prefix, suffix, or
386
- # contains must be specified. Limited to 5 principals.
379
+ # field is under development and we don't recommend using it at this time.
380
+ # Limited to 5 principals.
387
381
  # Corresponds to the JSON property `principals`
388
382
  # @return [Array<Google::Apis::NetworksecurityV1::AuthzPolicyAuthzRuleStringMatch>]
389
383
  attr_accessor :principals
@@ -1793,6 +1787,528 @@ module Google
1793
1787
  end
1794
1788
  end
1795
1789
 
1790
+ # A deployment represents a zonal intercept backend ready to accept GENEVE-
1791
+ # encapsulated traffic, e.g. a zonal instance group fronted by an internal
1792
+ # passthrough load balancer. Deployments are always part of a global deployment
1793
+ # group which represents a global intercept service.
1794
+ class InterceptDeployment
1795
+ include Google::Apis::Core::Hashable
1796
+
1797
+ # Output only. The timestamp when the resource was created. See https://google.
1798
+ # aip.dev/148#timestamps.
1799
+ # Corresponds to the JSON property `createTime`
1800
+ # @return [String]
1801
+ attr_accessor :create_time
1802
+
1803
+ # Optional. User-provided description of the deployment. Used as additional
1804
+ # context for the deployment.
1805
+ # Corresponds to the JSON property `description`
1806
+ # @return [String]
1807
+ attr_accessor :description
1808
+
1809
+ # Required. Immutable. The regional forwarding rule that fronts the interceptors,
1810
+ # for example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`.
1811
+ # See https://google.aip.dev/124.
1812
+ # Corresponds to the JSON property `forwardingRule`
1813
+ # @return [String]
1814
+ attr_accessor :forwarding_rule
1815
+
1816
+ # Required. Immutable. The deployment group that this deployment is a part of,
1817
+ # for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-
1818
+ # dg`. See https://google.aip.dev/124.
1819
+ # Corresponds to the JSON property `interceptDeploymentGroup`
1820
+ # @return [String]
1821
+ attr_accessor :intercept_deployment_group
1822
+
1823
+ # Optional. Labels are key/value pairs that help to organize and filter
1824
+ # resources.
1825
+ # Corresponds to the JSON property `labels`
1826
+ # @return [Hash<String,String>]
1827
+ attr_accessor :labels
1828
+
1829
+ # Immutable. Identifier. The resource name of this deployment, for example: `
1830
+ # projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`. See
1831
+ # https://google.aip.dev/122 for more details.
1832
+ # Corresponds to the JSON property `name`
1833
+ # @return [String]
1834
+ attr_accessor :name
1835
+
1836
+ # Output only. The current state of the resource does not match the user's
1837
+ # intended state, and the system is working to reconcile them. This part of the
1838
+ # normal operation (e.g. linking a new association to the parent group). See
1839
+ # https://google.aip.dev/128.
1840
+ # Corresponds to the JSON property `reconciling`
1841
+ # @return [Boolean]
1842
+ attr_accessor :reconciling
1843
+ alias_method :reconciling?, :reconciling
1844
+
1845
+ # Output only. The current state of the deployment. See https://google.aip.dev/
1846
+ # 216.
1847
+ # Corresponds to the JSON property `state`
1848
+ # @return [String]
1849
+ attr_accessor :state
1850
+
1851
+ # Output only. The timestamp when the resource was most recently updated. See
1852
+ # https://google.aip.dev/148#timestamps.
1853
+ # Corresponds to the JSON property `updateTime`
1854
+ # @return [String]
1855
+ attr_accessor :update_time
1856
+
1857
+ def initialize(**args)
1858
+ update!(**args)
1859
+ end
1860
+
1861
+ # Update properties of this object
1862
+ def update!(**args)
1863
+ @create_time = args[:create_time] if args.key?(:create_time)
1864
+ @description = args[:description] if args.key?(:description)
1865
+ @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
1866
+ @intercept_deployment_group = args[:intercept_deployment_group] if args.key?(:intercept_deployment_group)
1867
+ @labels = args[:labels] if args.key?(:labels)
1868
+ @name = args[:name] if args.key?(:name)
1869
+ @reconciling = args[:reconciling] if args.key?(:reconciling)
1870
+ @state = args[:state] if args.key?(:state)
1871
+ @update_time = args[:update_time] if args.key?(:update_time)
1872
+ end
1873
+ end
1874
+
1875
+ # A deployment group aggregates many zonal intercept backends (deployments) into
1876
+ # a single global intercept service. Consumers can connect this service using an
1877
+ # endpoint group.
1878
+ class InterceptDeploymentGroup
1879
+ include Google::Apis::Core::Hashable
1880
+
1881
+ # Output only. The list of endpoint groups that are connected to this resource.
1882
+ # Corresponds to the JSON property `connectedEndpointGroups`
1883
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptDeploymentGroupConnectedEndpointGroup>]
1884
+ attr_accessor :connected_endpoint_groups
1885
+
1886
+ # Output only. The timestamp when the resource was created. See https://google.
1887
+ # aip.dev/148#timestamps.
1888
+ # Corresponds to the JSON property `createTime`
1889
+ # @return [String]
1890
+ attr_accessor :create_time
1891
+
1892
+ # Optional. User-provided description of the deployment group. Used as
1893
+ # additional context for the deployment group.
1894
+ # Corresponds to the JSON property `description`
1895
+ # @return [String]
1896
+ attr_accessor :description
1897
+
1898
+ # Optional. Labels are key/value pairs that help to organize and filter
1899
+ # resources.
1900
+ # Corresponds to the JSON property `labels`
1901
+ # @return [Hash<String,String>]
1902
+ attr_accessor :labels
1903
+
1904
+ # Output only. The list of locations where the deployment group is present.
1905
+ # Corresponds to the JSON property `locations`
1906
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptLocation>]
1907
+ attr_accessor :locations
1908
+
1909
+ # Immutable. Identifier. The resource name of this deployment group, for example:
1910
+ # `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See
1911
+ # https://google.aip.dev/122 for more details.
1912
+ # Corresponds to the JSON property `name`
1913
+ # @return [String]
1914
+ attr_accessor :name
1915
+
1916
+ # Output only. The list of Intercept Deployments that belong to this group.
1917
+ # Corresponds to the JSON property `nestedDeployments`
1918
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptDeploymentGroupDeployment>]
1919
+ attr_accessor :nested_deployments
1920
+
1921
+ # Required. Immutable. The network that will be used for all child deployments,
1922
+ # for example: `projects/`project`/global/networks/`network``. See https://
1923
+ # google.aip.dev/124.
1924
+ # Corresponds to the JSON property `network`
1925
+ # @return [String]
1926
+ attr_accessor :network
1927
+
1928
+ # Output only. The current state of the resource does not match the user's
1929
+ # intended state, and the system is working to reconcile them. This is part of
1930
+ # the normal operation (e.g. adding a new deployment to the group) See https://
1931
+ # google.aip.dev/128.
1932
+ # Corresponds to the JSON property `reconciling`
1933
+ # @return [Boolean]
1934
+ attr_accessor :reconciling
1935
+ alias_method :reconciling?, :reconciling
1936
+
1937
+ # Output only. The current state of the deployment group. See https://google.aip.
1938
+ # dev/216.
1939
+ # Corresponds to the JSON property `state`
1940
+ # @return [String]
1941
+ attr_accessor :state
1942
+
1943
+ # Output only. The timestamp when the resource was most recently updated. See
1944
+ # https://google.aip.dev/148#timestamps.
1945
+ # Corresponds to the JSON property `updateTime`
1946
+ # @return [String]
1947
+ attr_accessor :update_time
1948
+
1949
+ def initialize(**args)
1950
+ update!(**args)
1951
+ end
1952
+
1953
+ # Update properties of this object
1954
+ def update!(**args)
1955
+ @connected_endpoint_groups = args[:connected_endpoint_groups] if args.key?(:connected_endpoint_groups)
1956
+ @create_time = args[:create_time] if args.key?(:create_time)
1957
+ @description = args[:description] if args.key?(:description)
1958
+ @labels = args[:labels] if args.key?(:labels)
1959
+ @locations = args[:locations] if args.key?(:locations)
1960
+ @name = args[:name] if args.key?(:name)
1961
+ @nested_deployments = args[:nested_deployments] if args.key?(:nested_deployments)
1962
+ @network = args[:network] if args.key?(:network)
1963
+ @reconciling = args[:reconciling] if args.key?(:reconciling)
1964
+ @state = args[:state] if args.key?(:state)
1965
+ @update_time = args[:update_time] if args.key?(:update_time)
1966
+ end
1967
+ end
1968
+
1969
+ # An endpoint group connected to this deployment group.
1970
+ class InterceptDeploymentGroupConnectedEndpointGroup
1971
+ include Google::Apis::Core::Hashable
1972
+
1973
+ # Output only. The connected endpoint group's resource name, for example: `
1974
+ # projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https:/
1975
+ # /google.aip.dev/124.
1976
+ # Corresponds to the JSON property `name`
1977
+ # @return [String]
1978
+ attr_accessor :name
1979
+
1980
+ def initialize(**args)
1981
+ update!(**args)
1982
+ end
1983
+
1984
+ # Update properties of this object
1985
+ def update!(**args)
1986
+ @name = args[:name] if args.key?(:name)
1987
+ end
1988
+ end
1989
+
1990
+ # A deployment belonging to this deployment group.
1991
+ class InterceptDeploymentGroupDeployment
1992
+ include Google::Apis::Core::Hashable
1993
+
1994
+ # Output only. The name of the Intercept Deployment, in the format: `projects/`
1995
+ # project`/locations/`location`/interceptDeployments/`intercept_deployment``.
1996
+ # Corresponds to the JSON property `name`
1997
+ # @return [String]
1998
+ attr_accessor :name
1999
+
2000
+ # Output only. Most recent known state of the deployment.
2001
+ # Corresponds to the JSON property `state`
2002
+ # @return [String]
2003
+ attr_accessor :state
2004
+
2005
+ def initialize(**args)
2006
+ update!(**args)
2007
+ end
2008
+
2009
+ # Update properties of this object
2010
+ def update!(**args)
2011
+ @name = args[:name] if args.key?(:name)
2012
+ @state = args[:state] if args.key?(:state)
2013
+ end
2014
+ end
2015
+
2016
+ # An endpoint group is a consumer frontend for a deployment group (backend). In
2017
+ # order to configure intercept for a network, consumers must create: - An
2018
+ # association between their network and the endpoint group. - A security profile
2019
+ # that points to the endpoint group. - A firewall rule that references the
2020
+ # security profile (group).
2021
+ class InterceptEndpointGroup
2022
+ include Google::Apis::Core::Hashable
2023
+
2024
+ # Output only. List of associations to this endpoint group.
2025
+ # Corresponds to the JSON property `associations`
2026
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptEndpointGroupAssociationDetails>]
2027
+ attr_accessor :associations
2028
+
2029
+ # The endpoint group's view of a connected deployment group.
2030
+ # Corresponds to the JSON property `connectedDeploymentGroup`
2031
+ # @return [Google::Apis::NetworksecurityV1::InterceptEndpointGroupConnectedDeploymentGroup]
2032
+ attr_accessor :connected_deployment_group
2033
+
2034
+ # Output only. The timestamp when the resource was created. See https://google.
2035
+ # aip.dev/148#timestamps.
2036
+ # Corresponds to the JSON property `createTime`
2037
+ # @return [String]
2038
+ attr_accessor :create_time
2039
+
2040
+ # Optional. User-provided description of the endpoint group. Used as additional
2041
+ # context for the endpoint group.
2042
+ # Corresponds to the JSON property `description`
2043
+ # @return [String]
2044
+ attr_accessor :description
2045
+
2046
+ # Required. Immutable. The deployment group that this endpoint group is
2047
+ # connected to, for example: `projects/123456789/locations/global/
2048
+ # interceptDeploymentGroups/my-dg`. See https://google.aip.dev/124.
2049
+ # Corresponds to the JSON property `interceptDeploymentGroup`
2050
+ # @return [String]
2051
+ attr_accessor :intercept_deployment_group
2052
+
2053
+ # Optional. Labels are key/value pairs that help to organize and filter
2054
+ # resources.
2055
+ # Corresponds to the JSON property `labels`
2056
+ # @return [Hash<String,String>]
2057
+ attr_accessor :labels
2058
+
2059
+ # Immutable. Identifier. The resource name of this endpoint group, for example: `
2060
+ # projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https:/
2061
+ # /google.aip.dev/122 for more details.
2062
+ # Corresponds to the JSON property `name`
2063
+ # @return [String]
2064
+ attr_accessor :name
2065
+
2066
+ # Output only. The current state of the resource does not match the user's
2067
+ # intended state, and the system is working to reconcile them. This is part of
2068
+ # the normal operation (e.g. adding a new association to the group). See https://
2069
+ # google.aip.dev/128.
2070
+ # Corresponds to the JSON property `reconciling`
2071
+ # @return [Boolean]
2072
+ attr_accessor :reconciling
2073
+ alias_method :reconciling?, :reconciling
2074
+
2075
+ # Output only. The current state of the endpoint group. See https://google.aip.
2076
+ # dev/216.
2077
+ # Corresponds to the JSON property `state`
2078
+ # @return [String]
2079
+ attr_accessor :state
2080
+
2081
+ # Output only. The timestamp when the resource was most recently updated. See
2082
+ # https://google.aip.dev/148#timestamps.
2083
+ # Corresponds to the JSON property `updateTime`
2084
+ # @return [String]
2085
+ attr_accessor :update_time
2086
+
2087
+ def initialize(**args)
2088
+ update!(**args)
2089
+ end
2090
+
2091
+ # Update properties of this object
2092
+ def update!(**args)
2093
+ @associations = args[:associations] if args.key?(:associations)
2094
+ @connected_deployment_group = args[:connected_deployment_group] if args.key?(:connected_deployment_group)
2095
+ @create_time = args[:create_time] if args.key?(:create_time)
2096
+ @description = args[:description] if args.key?(:description)
2097
+ @intercept_deployment_group = args[:intercept_deployment_group] if args.key?(:intercept_deployment_group)
2098
+ @labels = args[:labels] if args.key?(:labels)
2099
+ @name = args[:name] if args.key?(:name)
2100
+ @reconciling = args[:reconciling] if args.key?(:reconciling)
2101
+ @state = args[:state] if args.key?(:state)
2102
+ @update_time = args[:update_time] if args.key?(:update_time)
2103
+ end
2104
+ end
2105
+
2106
+ # An endpoint group association represents a link between a network and an
2107
+ # endpoint group in the organization. Creating an association creates the
2108
+ # networking infrastructure linking the network to the endpoint group, but does
2109
+ # not enable intercept by itself. To enable intercept, the user must also create
2110
+ # a network firewall policy containing intercept rules and associate it with the
2111
+ # network.
2112
+ class InterceptEndpointGroupAssociation
2113
+ include Google::Apis::Core::Hashable
2114
+
2115
+ # Output only. The timestamp when the resource was created. See https://google.
2116
+ # aip.dev/148#timestamps.
2117
+ # Corresponds to the JSON property `createTime`
2118
+ # @return [String]
2119
+ attr_accessor :create_time
2120
+
2121
+ # Required. Immutable. The endpoint group that this association is connected to,
2122
+ # for example: `projects/123456789/locations/global/interceptEndpointGroups/my-
2123
+ # eg`. See https://google.aip.dev/124.
2124
+ # Corresponds to the JSON property `interceptEndpointGroup`
2125
+ # @return [String]
2126
+ attr_accessor :intercept_endpoint_group
2127
+
2128
+ # Optional. Labels are key/value pairs that help to organize and filter
2129
+ # resources.
2130
+ # Corresponds to the JSON property `labels`
2131
+ # @return [Hash<String,String>]
2132
+ attr_accessor :labels
2133
+
2134
+ # Output only. The list of locations where the association is configured. This
2135
+ # information is retrieved from the linked endpoint group.
2136
+ # Corresponds to the JSON property `locations`
2137
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptLocation>]
2138
+ attr_accessor :locations
2139
+
2140
+ # Output only. The list of locations where the association is present. This
2141
+ # information is retrieved from the linked endpoint group, and not configured as
2142
+ # part of the association itself.
2143
+ # Corresponds to the JSON property `locationsDetails`
2144
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptEndpointGroupAssociationLocationDetails>]
2145
+ attr_accessor :locations_details
2146
+
2147
+ # Immutable. Identifier. The resource name of this endpoint group association,
2148
+ # for example: `projects/123456789/locations/global/
2149
+ # interceptEndpointGroupAssociations/my-eg-association`. See https://google.aip.
2150
+ # dev/122 for more details.
2151
+ # Corresponds to the JSON property `name`
2152
+ # @return [String]
2153
+ attr_accessor :name
2154
+
2155
+ # Required. Immutable. The VPC network that is associated. for example: `
2156
+ # projects/123456789/global/networks/my-network`. See https://google.aip.dev/124.
2157
+ # Corresponds to the JSON property `network`
2158
+ # @return [String]
2159
+ attr_accessor :network
2160
+
2161
+ # Output only. The current state of the resource does not match the user's
2162
+ # intended state, and the system is working to reconcile them. This part of the
2163
+ # normal operation (e.g. adding a new location to the target deployment group).
2164
+ # See https://google.aip.dev/128.
2165
+ # Corresponds to the JSON property `reconciling`
2166
+ # @return [Boolean]
2167
+ attr_accessor :reconciling
2168
+ alias_method :reconciling?, :reconciling
2169
+
2170
+ # Output only. Current state of the endpoint group association.
2171
+ # Corresponds to the JSON property `state`
2172
+ # @return [String]
2173
+ attr_accessor :state
2174
+
2175
+ # Output only. The timestamp when the resource was most recently updated. See
2176
+ # https://google.aip.dev/148#timestamps.
2177
+ # Corresponds to the JSON property `updateTime`
2178
+ # @return [String]
2179
+ attr_accessor :update_time
2180
+
2181
+ def initialize(**args)
2182
+ update!(**args)
2183
+ end
2184
+
2185
+ # Update properties of this object
2186
+ def update!(**args)
2187
+ @create_time = args[:create_time] if args.key?(:create_time)
2188
+ @intercept_endpoint_group = args[:intercept_endpoint_group] if args.key?(:intercept_endpoint_group)
2189
+ @labels = args[:labels] if args.key?(:labels)
2190
+ @locations = args[:locations] if args.key?(:locations)
2191
+ @locations_details = args[:locations_details] if args.key?(:locations_details)
2192
+ @name = args[:name] if args.key?(:name)
2193
+ @network = args[:network] if args.key?(:network)
2194
+ @reconciling = args[:reconciling] if args.key?(:reconciling)
2195
+ @state = args[:state] if args.key?(:state)
2196
+ @update_time = args[:update_time] if args.key?(:update_time)
2197
+ end
2198
+ end
2199
+
2200
+ # The endpoint group's view of a connected association.
2201
+ class InterceptEndpointGroupAssociationDetails
2202
+ include Google::Apis::Core::Hashable
2203
+
2204
+ # Output only. The connected association's resource name, for example: `projects/
2205
+ # 123456789/locations/global/interceptEndpointGroupAssociations/my-ega`. See
2206
+ # https://google.aip.dev/124.
2207
+ # Corresponds to the JSON property `name`
2208
+ # @return [String]
2209
+ attr_accessor :name
2210
+
2211
+ # Output only. The associated network, for example: projects/123456789/global/
2212
+ # networks/my-network. See https://google.aip.dev/124.
2213
+ # Corresponds to the JSON property `network`
2214
+ # @return [String]
2215
+ attr_accessor :network
2216
+
2217
+ # Output only. Most recent known state of the association.
2218
+ # Corresponds to the JSON property `state`
2219
+ # @return [String]
2220
+ attr_accessor :state
2221
+
2222
+ def initialize(**args)
2223
+ update!(**args)
2224
+ end
2225
+
2226
+ # Update properties of this object
2227
+ def update!(**args)
2228
+ @name = args[:name] if args.key?(:name)
2229
+ @network = args[:network] if args.key?(:network)
2230
+ @state = args[:state] if args.key?(:state)
2231
+ end
2232
+ end
2233
+
2234
+ # Contains details about the state of an association in a specific cloud
2235
+ # location.
2236
+ class InterceptEndpointGroupAssociationLocationDetails
2237
+ include Google::Apis::Core::Hashable
2238
+
2239
+ # Output only. The cloud location, e.g. "us-central1-a" or "asia-south1".
2240
+ # Corresponds to the JSON property `location`
2241
+ # @return [String]
2242
+ attr_accessor :location
2243
+
2244
+ # Output only. The current state of the association in this location.
2245
+ # Corresponds to the JSON property `state`
2246
+ # @return [String]
2247
+ attr_accessor :state
2248
+
2249
+ def initialize(**args)
2250
+ update!(**args)
2251
+ end
2252
+
2253
+ # Update properties of this object
2254
+ def update!(**args)
2255
+ @location = args[:location] if args.key?(:location)
2256
+ @state = args[:state] if args.key?(:state)
2257
+ end
2258
+ end
2259
+
2260
+ # The endpoint group's view of a connected deployment group.
2261
+ class InterceptEndpointGroupConnectedDeploymentGroup
2262
+ include Google::Apis::Core::Hashable
2263
+
2264
+ # Output only. The list of locations where the deployment group is present.
2265
+ # Corresponds to the JSON property `locations`
2266
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptLocation>]
2267
+ attr_accessor :locations
2268
+
2269
+ # Output only. The connected deployment group's resource name, for example: `
2270
+ # projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See
2271
+ # https://google.aip.dev/124.
2272
+ # Corresponds to the JSON property `name`
2273
+ # @return [String]
2274
+ attr_accessor :name
2275
+
2276
+ def initialize(**args)
2277
+ update!(**args)
2278
+ end
2279
+
2280
+ # Update properties of this object
2281
+ def update!(**args)
2282
+ @locations = args[:locations] if args.key?(:locations)
2283
+ @name = args[:name] if args.key?(:name)
2284
+ end
2285
+ end
2286
+
2287
+ # Details about intercept in a specific cloud location.
2288
+ class InterceptLocation
2289
+ include Google::Apis::Core::Hashable
2290
+
2291
+ # Output only. The cloud location, e.g. "us-central1-a" or "asia-south1".
2292
+ # Corresponds to the JSON property `location`
2293
+ # @return [String]
2294
+ attr_accessor :location
2295
+
2296
+ # Output only. The current state of the association in this location.
2297
+ # Corresponds to the JSON property `state`
2298
+ # @return [String]
2299
+ attr_accessor :state
2300
+
2301
+ def initialize(**args)
2302
+ update!(**args)
2303
+ end
2304
+
2305
+ # Update properties of this object
2306
+ def update!(**args)
2307
+ @location = args[:location] if args.key?(:location)
2308
+ @state = args[:state] if args.key?(:state)
2309
+ end
2310
+ end
2311
+
1796
2312
  # Response of the ListAddressGroupReferences method.
1797
2313
  class ListAddressGroupReferencesResponse
1798
2314
  include Google::Apis::Core::Hashable
@@ -2097,6 +2613,120 @@ module Google
2097
2613
  end
2098
2614
  end
2099
2615
 
2616
+ # Response message for ListInterceptDeploymentGroups.
2617
+ class ListInterceptDeploymentGroupsResponse
2618
+ include Google::Apis::Core::Hashable
2619
+
2620
+ # The deployment groups from the specified parent.
2621
+ # Corresponds to the JSON property `interceptDeploymentGroups`
2622
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptDeploymentGroup>]
2623
+ attr_accessor :intercept_deployment_groups
2624
+
2625
+ # A token that can be sent as `page_token` to retrieve the next page. If this
2626
+ # field is omitted, there are no subsequent pages. See https://google.aip.dev/
2627
+ # 158 for more details.
2628
+ # Corresponds to the JSON property `nextPageToken`
2629
+ # @return [String]
2630
+ attr_accessor :next_page_token
2631
+
2632
+ def initialize(**args)
2633
+ update!(**args)
2634
+ end
2635
+
2636
+ # Update properties of this object
2637
+ def update!(**args)
2638
+ @intercept_deployment_groups = args[:intercept_deployment_groups] if args.key?(:intercept_deployment_groups)
2639
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2640
+ end
2641
+ end
2642
+
2643
+ # Response message for ListInterceptDeployments.
2644
+ class ListInterceptDeploymentsResponse
2645
+ include Google::Apis::Core::Hashable
2646
+
2647
+ # The deployments from the specified parent.
2648
+ # Corresponds to the JSON property `interceptDeployments`
2649
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptDeployment>]
2650
+ attr_accessor :intercept_deployments
2651
+
2652
+ # A token that can be sent as `page_token` to retrieve the next page. If this
2653
+ # field is omitted, there are no subsequent pages. See https://google.aip.dev/
2654
+ # 158 for more details.
2655
+ # Corresponds to the JSON property `nextPageToken`
2656
+ # @return [String]
2657
+ attr_accessor :next_page_token
2658
+
2659
+ # Locations that could not be reached.
2660
+ # Corresponds to the JSON property `unreachable`
2661
+ # @return [Array<String>]
2662
+ attr_accessor :unreachable
2663
+
2664
+ def initialize(**args)
2665
+ update!(**args)
2666
+ end
2667
+
2668
+ # Update properties of this object
2669
+ def update!(**args)
2670
+ @intercept_deployments = args[:intercept_deployments] if args.key?(:intercept_deployments)
2671
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2672
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2673
+ end
2674
+ end
2675
+
2676
+ # Response message for ListInterceptEndpointGroupAssociations.
2677
+ class ListInterceptEndpointGroupAssociationsResponse
2678
+ include Google::Apis::Core::Hashable
2679
+
2680
+ # The associations from the specified parent.
2681
+ # Corresponds to the JSON property `interceptEndpointGroupAssociations`
2682
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptEndpointGroupAssociation>]
2683
+ attr_accessor :intercept_endpoint_group_associations
2684
+
2685
+ # A token that can be sent as `page_token` to retrieve the next page. If this
2686
+ # field is omitted, there are no subsequent pages. See https://google.aip.dev/
2687
+ # 158 for more details.
2688
+ # Corresponds to the JSON property `nextPageToken`
2689
+ # @return [String]
2690
+ attr_accessor :next_page_token
2691
+
2692
+ def initialize(**args)
2693
+ update!(**args)
2694
+ end
2695
+
2696
+ # Update properties of this object
2697
+ def update!(**args)
2698
+ @intercept_endpoint_group_associations = args[:intercept_endpoint_group_associations] if args.key?(:intercept_endpoint_group_associations)
2699
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2700
+ end
2701
+ end
2702
+
2703
+ # Response message for ListInterceptEndpointGroups.
2704
+ class ListInterceptEndpointGroupsResponse
2705
+ include Google::Apis::Core::Hashable
2706
+
2707
+ # The endpoint groups from the specified parent.
2708
+ # Corresponds to the JSON property `interceptEndpointGroups`
2709
+ # @return [Array<Google::Apis::NetworksecurityV1::InterceptEndpointGroup>]
2710
+ attr_accessor :intercept_endpoint_groups
2711
+
2712
+ # A token that can be sent as `page_token` to retrieve the next page. If this
2713
+ # field is omitted, there are no subsequent pages. See https://google.aip.dev/
2714
+ # 158 for more details.
2715
+ # Corresponds to the JSON property `nextPageToken`
2716
+ # @return [String]
2717
+ attr_accessor :next_page_token
2718
+
2719
+ def initialize(**args)
2720
+ update!(**args)
2721
+ end
2722
+
2723
+ # Update properties of this object
2724
+ def update!(**args)
2725
+ @intercept_endpoint_groups = args[:intercept_endpoint_groups] if args.key?(:intercept_endpoint_groups)
2726
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2727
+ end
2728
+ end
2729
+
2100
2730
  # The response message for Locations.ListLocations.
2101
2731
  class ListLocationsResponse
2102
2732
  include Google::Apis::Core::Hashable
@@ -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.35.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250326"
25
+ REVISION = "20250428"
26
26
  end
27
27
  end
28
28
  end