google-apis-networkservices_v1 0.71.0 → 0.72.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 +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/networkservices_v1/classes.rb +574 -0
- data/lib/google/apis/networkservices_v1/gem_version.rb +3 -3
- data/lib/google/apis/networkservices_v1/representations.rb +237 -0
- data/lib/google/apis/networkservices_v1/service.rb +652 -0
- 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: 1fe9f68d9dfdccdc66eabda4860f977b8a15eee5910176739d61f68a2e0c6ba2
|
|
4
|
+
data.tar.gz: 7c0cc0ef05c3b53678dbfc3eb66cdde7e7e0bddffba72397276efe8ebbba1e28
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7913cc0996948e5ff0a19d5688b5029325e7bcff8c13e3ad7abc18200fa5615fbf409161108a64cd9907e3ad8e0dc22114f6c732fd04a710407c91d800a9235
|
|
7
|
+
data.tar.gz: d48b03cbfc91a4f36eaeb402a32f2f967acdfd4928301b921f2cf949c6ae5e7c0f03d674ecbb0145c04d782fe7f1fb0a386afb9584d219bbc2b3b0a57f1ec092
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-networkservices_v1
|
|
2
2
|
|
|
3
|
+
### v0.72.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260605
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.71.0 (2026-05-03)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260424
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/networking) may provide gui
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -22,6 +22,250 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module NetworkservicesV1
|
|
24
24
|
|
|
25
|
+
# AgentGateway represents the agent gateway resource.
|
|
26
|
+
class AgentGateway
|
|
27
|
+
include Google::Apis::Core::Hashable
|
|
28
|
+
|
|
29
|
+
# AgentGatewayOutputCard contains informational output-only fields
|
|
30
|
+
# Corresponds to the JSON property `agentGatewayCard`
|
|
31
|
+
# @return [Google::Apis::NetworkservicesV1::AgentGatewayAgentGatewayOutputCard]
|
|
32
|
+
attr_accessor :agent_gateway_card
|
|
33
|
+
|
|
34
|
+
# Output only. The timestamp when the resource was created.
|
|
35
|
+
# Corresponds to the JSON property `createTime`
|
|
36
|
+
# @return [String]
|
|
37
|
+
attr_accessor :create_time
|
|
38
|
+
|
|
39
|
+
# Optional. A free-text description of the resource. Max length 1024 characters.
|
|
40
|
+
# Corresponds to the JSON property `description`
|
|
41
|
+
# @return [String]
|
|
42
|
+
attr_accessor :description
|
|
43
|
+
|
|
44
|
+
# Optional. Etag of the resource. If this is provided, it must match the server'
|
|
45
|
+
# s etag. If the provided etag does not match the server's etag, the request
|
|
46
|
+
# will fail with a 409 ABORTED error.
|
|
47
|
+
# Corresponds to the JSON property `etag`
|
|
48
|
+
# @return [String]
|
|
49
|
+
attr_accessor :etag
|
|
50
|
+
|
|
51
|
+
# Configuration for Google Managed deployment mode. Proxy is orchestrated and
|
|
52
|
+
# managed by GoogleCloud in a tenant project.
|
|
53
|
+
# Corresponds to the JSON property `googleManaged`
|
|
54
|
+
# @return [Google::Apis::NetworkservicesV1::AgentGatewayGoogleManaged]
|
|
55
|
+
attr_accessor :google_managed
|
|
56
|
+
|
|
57
|
+
# Optional. Set of label tags associated with the AgentGateway resource.
|
|
58
|
+
# Corresponds to the JSON property `labels`
|
|
59
|
+
# @return [Hash<String,String>]
|
|
60
|
+
attr_accessor :labels
|
|
61
|
+
|
|
62
|
+
# Identifier. Name of the AgentGateway resource. It matches pattern `projects/*/
|
|
63
|
+
# locations/*/agentGateways/`.
|
|
64
|
+
# Corresponds to the JSON property `name`
|
|
65
|
+
# @return [String]
|
|
66
|
+
attr_accessor :name
|
|
67
|
+
|
|
68
|
+
# NetworkConfig contains network configurations for the AgentGateway.
|
|
69
|
+
# Corresponds to the JSON property `networkConfig`
|
|
70
|
+
# @return [Google::Apis::NetworkservicesV1::AgentGatewayNetworkConfig]
|
|
71
|
+
attr_accessor :network_config
|
|
72
|
+
|
|
73
|
+
# Optional. Deprecated.
|
|
74
|
+
# Corresponds to the JSON property `protocols`
|
|
75
|
+
# @return [Array<String>]
|
|
76
|
+
attr_accessor :protocols
|
|
77
|
+
|
|
78
|
+
# Optional. A list of Agent registries containing the agents, MCP servers and
|
|
79
|
+
# tools governed by the Agent Gateway. Note: Currently limited to project-scoped
|
|
80
|
+
# registries Must be of format `//agentregistry.googleapis.com/projects/`project`
|
|
81
|
+
# /locations/`location`/
|
|
82
|
+
# Corresponds to the JSON property `registries`
|
|
83
|
+
# @return [Array<String>]
|
|
84
|
+
attr_accessor :registries
|
|
85
|
+
|
|
86
|
+
# Configuration for Self Managed deployment mode. Attach to existing Application
|
|
87
|
+
# Load Balancers or Secure Web Proxies.
|
|
88
|
+
# Corresponds to the JSON property `selfManaged`
|
|
89
|
+
# @return [Google::Apis::NetworkservicesV1::AgentGatewaySelfManaged]
|
|
90
|
+
attr_accessor :self_managed
|
|
91
|
+
|
|
92
|
+
# Output only. The timestamp when the resource was updated.
|
|
93
|
+
# Corresponds to the JSON property `updateTime`
|
|
94
|
+
# @return [String]
|
|
95
|
+
attr_accessor :update_time
|
|
96
|
+
|
|
97
|
+
def initialize(**args)
|
|
98
|
+
update!(**args)
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Update properties of this object
|
|
102
|
+
def update!(**args)
|
|
103
|
+
@agent_gateway_card = args[:agent_gateway_card] if args.key?(:agent_gateway_card)
|
|
104
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
105
|
+
@description = args[:description] if args.key?(:description)
|
|
106
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
107
|
+
@google_managed = args[:google_managed] if args.key?(:google_managed)
|
|
108
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
109
|
+
@name = args[:name] if args.key?(:name)
|
|
110
|
+
@network_config = args[:network_config] if args.key?(:network_config)
|
|
111
|
+
@protocols = args[:protocols] if args.key?(:protocols)
|
|
112
|
+
@registries = args[:registries] if args.key?(:registries)
|
|
113
|
+
@self_managed = args[:self_managed] if args.key?(:self_managed)
|
|
114
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# AgentGatewayOutputCard contains informational output-only fields
|
|
119
|
+
class AgentGatewayAgentGatewayOutputCard
|
|
120
|
+
include Google::Apis::Core::Hashable
|
|
121
|
+
|
|
122
|
+
# Output only. mTLS Endpoint associated with this AgentGateway
|
|
123
|
+
# Corresponds to the JSON property `mtlsEndpoint`
|
|
124
|
+
# @return [String]
|
|
125
|
+
attr_accessor :mtls_endpoint
|
|
126
|
+
|
|
127
|
+
# Output only. Root Certificates for Agents to validate this AgentGateway
|
|
128
|
+
# Corresponds to the JSON property `rootCertificates`
|
|
129
|
+
# @return [Array<String>]
|
|
130
|
+
attr_accessor :root_certificates
|
|
131
|
+
|
|
132
|
+
# Output only. Service Account used by Service Extensions to operate.
|
|
133
|
+
# Corresponds to the JSON property `serviceExtensionsServiceAccount`
|
|
134
|
+
# @return [String]
|
|
135
|
+
attr_accessor :service_extensions_service_account
|
|
136
|
+
|
|
137
|
+
def initialize(**args)
|
|
138
|
+
update!(**args)
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# Update properties of this object
|
|
142
|
+
def update!(**args)
|
|
143
|
+
@mtls_endpoint = args[:mtls_endpoint] if args.key?(:mtls_endpoint)
|
|
144
|
+
@root_certificates = args[:root_certificates] if args.key?(:root_certificates)
|
|
145
|
+
@service_extensions_service_account = args[:service_extensions_service_account] if args.key?(:service_extensions_service_account)
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# Configuration for Google Managed deployment mode. Proxy is orchestrated and
|
|
150
|
+
# managed by GoogleCloud in a tenant project.
|
|
151
|
+
class AgentGatewayGoogleManaged
|
|
152
|
+
include Google::Apis::Core::Hashable
|
|
153
|
+
|
|
154
|
+
# Optional. Operating Mode of Agent Gateway.
|
|
155
|
+
# Corresponds to the JSON property `governedAccessPath`
|
|
156
|
+
# @return [String]
|
|
157
|
+
attr_accessor :governed_access_path
|
|
158
|
+
|
|
159
|
+
def initialize(**args)
|
|
160
|
+
update!(**args)
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
# Update properties of this object
|
|
164
|
+
def update!(**args)
|
|
165
|
+
@governed_access_path = args[:governed_access_path] if args.key?(:governed_access_path)
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
# NetworkConfig contains network configurations for the AgentGateway.
|
|
170
|
+
class AgentGatewayNetworkConfig
|
|
171
|
+
include Google::Apis::Core::Hashable
|
|
172
|
+
|
|
173
|
+
# DNS peering config for the user VPC network.
|
|
174
|
+
# Corresponds to the JSON property `dnsPeeringConfig`
|
|
175
|
+
# @return [Google::Apis::NetworkservicesV1::AgentGatewayNetworkConfigDnsPeeringConfig]
|
|
176
|
+
attr_accessor :dns_peering_config
|
|
177
|
+
|
|
178
|
+
# Configuration for Egress
|
|
179
|
+
# Corresponds to the JSON property `egress`
|
|
180
|
+
# @return [Google::Apis::NetworkservicesV1::AgentGatewayNetworkConfigEgress]
|
|
181
|
+
attr_accessor :egress
|
|
182
|
+
|
|
183
|
+
def initialize(**args)
|
|
184
|
+
update!(**args)
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
# Update properties of this object
|
|
188
|
+
def update!(**args)
|
|
189
|
+
@dns_peering_config = args[:dns_peering_config] if args.key?(:dns_peering_config)
|
|
190
|
+
@egress = args[:egress] if args.key?(:egress)
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
# DNS peering config for the user VPC network.
|
|
195
|
+
class AgentGatewayNetworkConfigDnsPeeringConfig
|
|
196
|
+
include Google::Apis::Core::Hashable
|
|
197
|
+
|
|
198
|
+
# Required. Domain names for which DNS queries should be forwarded to the target
|
|
199
|
+
# network.
|
|
200
|
+
# Corresponds to the JSON property `domains`
|
|
201
|
+
# @return [Array<String>]
|
|
202
|
+
attr_accessor :domains
|
|
203
|
+
|
|
204
|
+
# Required. Target network in 'target project' to which DNS queries should be
|
|
205
|
+
# forwarded to. Must be in format of `projects/`project`/global/networks/`
|
|
206
|
+
# network``.
|
|
207
|
+
# Corresponds to the JSON property `targetNetwork`
|
|
208
|
+
# @return [String]
|
|
209
|
+
attr_accessor :target_network
|
|
210
|
+
|
|
211
|
+
# Required. Target project ID to which DNS queries should be forwarded to. This
|
|
212
|
+
# can be the same project that contains the AgentGateway or a different project.
|
|
213
|
+
# Corresponds to the JSON property `targetProject`
|
|
214
|
+
# @return [String]
|
|
215
|
+
attr_accessor :target_project
|
|
216
|
+
|
|
217
|
+
def initialize(**args)
|
|
218
|
+
update!(**args)
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
# Update properties of this object
|
|
222
|
+
def update!(**args)
|
|
223
|
+
@domains = args[:domains] if args.key?(:domains)
|
|
224
|
+
@target_network = args[:target_network] if args.key?(:target_network)
|
|
225
|
+
@target_project = args[:target_project] if args.key?(:target_project)
|
|
226
|
+
end
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
# Configuration for Egress
|
|
230
|
+
class AgentGatewayNetworkConfigEgress
|
|
231
|
+
include Google::Apis::Core::Hashable
|
|
232
|
+
|
|
233
|
+
# Optional. The URI of the Network Attachment resource.
|
|
234
|
+
# Corresponds to the JSON property `networkAttachment`
|
|
235
|
+
# @return [String]
|
|
236
|
+
attr_accessor :network_attachment
|
|
237
|
+
|
|
238
|
+
def initialize(**args)
|
|
239
|
+
update!(**args)
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
# Update properties of this object
|
|
243
|
+
def update!(**args)
|
|
244
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
245
|
+
end
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
# Configuration for Self Managed deployment mode. Attach to existing Application
|
|
249
|
+
# Load Balancers or Secure Web Proxies.
|
|
250
|
+
class AgentGatewaySelfManaged
|
|
251
|
+
include Google::Apis::Core::Hashable
|
|
252
|
+
|
|
253
|
+
# Optional. A supported Google Cloud networking proxy in the Project and
|
|
254
|
+
# Location
|
|
255
|
+
# Corresponds to the JSON property `resourceUri`
|
|
256
|
+
# @return [String]
|
|
257
|
+
attr_accessor :resource_uri
|
|
258
|
+
|
|
259
|
+
def initialize(**args)
|
|
260
|
+
update!(**args)
|
|
261
|
+
end
|
|
262
|
+
|
|
263
|
+
# Update properties of this object
|
|
264
|
+
def update!(**args)
|
|
265
|
+
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
|
266
|
+
end
|
|
267
|
+
end
|
|
268
|
+
|
|
25
269
|
# Specifies the audit configuration for a service. The configuration determines
|
|
26
270
|
# which permission types are logged, and what identities, if any, are exempted
|
|
27
271
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
|
@@ -2687,6 +2931,41 @@ module Google
|
|
|
2687
2931
|
end
|
|
2688
2932
|
end
|
|
2689
2933
|
|
|
2934
|
+
# Response returned by the ListAgentGateways method.
|
|
2935
|
+
class ListAgentGatewaysResponse
|
|
2936
|
+
include Google::Apis::Core::Hashable
|
|
2937
|
+
|
|
2938
|
+
# List of AgentGateway resources.
|
|
2939
|
+
# Corresponds to the JSON property `agentGateways`
|
|
2940
|
+
# @return [Array<Google::Apis::NetworkservicesV1::AgentGateway>]
|
|
2941
|
+
attr_accessor :agent_gateways
|
|
2942
|
+
|
|
2943
|
+
# If there might be more results than those appearing in this response, then `
|
|
2944
|
+
# next_page_token` is included. To get the next set of results, call this method
|
|
2945
|
+
# again using the value of `next_page_token` as `page_token`.
|
|
2946
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
2947
|
+
# @return [String]
|
|
2948
|
+
attr_accessor :next_page_token
|
|
2949
|
+
|
|
2950
|
+
# Unreachable resources. Populated when the request attempts to list all
|
|
2951
|
+
# resources across all supported locations, while some locations are temporarily
|
|
2952
|
+
# unavailable.
|
|
2953
|
+
# Corresponds to the JSON property `unreachable`
|
|
2954
|
+
# @return [Array<String>]
|
|
2955
|
+
attr_accessor :unreachable
|
|
2956
|
+
|
|
2957
|
+
def initialize(**args)
|
|
2958
|
+
update!(**args)
|
|
2959
|
+
end
|
|
2960
|
+
|
|
2961
|
+
# Update properties of this object
|
|
2962
|
+
def update!(**args)
|
|
2963
|
+
@agent_gateways = args[:agent_gateways] if args.key?(:agent_gateways)
|
|
2964
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2965
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
2966
|
+
end
|
|
2967
|
+
end
|
|
2968
|
+
|
|
2690
2969
|
# Message for response to listing `AuthzExtension` resources.
|
|
2691
2970
|
class ListAuthzExtensionsResponse
|
|
2692
2971
|
include Google::Apis::Core::Hashable
|
|
@@ -3077,6 +3356,68 @@ module Google
|
|
|
3077
3356
|
end
|
|
3078
3357
|
end
|
|
3079
3358
|
|
|
3359
|
+
# Response message for ListMulticastConsumerAssociations.
|
|
3360
|
+
class ListMulticastConsumerAssociationsResponse
|
|
3361
|
+
include Google::Apis::Core::Hashable
|
|
3362
|
+
|
|
3363
|
+
# The list of multicast consumer associations.
|
|
3364
|
+
# Corresponds to the JSON property `multicastConsumerAssociations`
|
|
3365
|
+
# @return [Array<Google::Apis::NetworkservicesV1::MulticastConsumerAssociation>]
|
|
3366
|
+
attr_accessor :multicast_consumer_associations
|
|
3367
|
+
|
|
3368
|
+
# A page token from an earlier query, as returned in `next_page_token`.
|
|
3369
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
3370
|
+
# @return [String]
|
|
3371
|
+
attr_accessor :next_page_token
|
|
3372
|
+
|
|
3373
|
+
# Locations that could not be reached.
|
|
3374
|
+
# Corresponds to the JSON property `unreachable`
|
|
3375
|
+
# @return [Array<String>]
|
|
3376
|
+
attr_accessor :unreachable
|
|
3377
|
+
|
|
3378
|
+
def initialize(**args)
|
|
3379
|
+
update!(**args)
|
|
3380
|
+
end
|
|
3381
|
+
|
|
3382
|
+
# Update properties of this object
|
|
3383
|
+
def update!(**args)
|
|
3384
|
+
@multicast_consumer_associations = args[:multicast_consumer_associations] if args.key?(:multicast_consumer_associations)
|
|
3385
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3386
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3387
|
+
end
|
|
3388
|
+
end
|
|
3389
|
+
|
|
3390
|
+
# Response message for ListMulticastGroupConsumerActivations.
|
|
3391
|
+
class ListMulticastGroupConsumerActivationsResponse
|
|
3392
|
+
include Google::Apis::Core::Hashable
|
|
3393
|
+
|
|
3394
|
+
# The list of multicast group consumer activations.
|
|
3395
|
+
# Corresponds to the JSON property `multicastGroupConsumerActivations`
|
|
3396
|
+
# @return [Array<Google::Apis::NetworkservicesV1::MulticastGroupConsumerActivation>]
|
|
3397
|
+
attr_accessor :multicast_group_consumer_activations
|
|
3398
|
+
|
|
3399
|
+
# A page token from an earlier query, as returned in `next_page_token`.
|
|
3400
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
3401
|
+
# @return [String]
|
|
3402
|
+
attr_accessor :next_page_token
|
|
3403
|
+
|
|
3404
|
+
# Locations that could not be reached.
|
|
3405
|
+
# Corresponds to the JSON property `unreachable`
|
|
3406
|
+
# @return [Array<String>]
|
|
3407
|
+
attr_accessor :unreachable
|
|
3408
|
+
|
|
3409
|
+
def initialize(**args)
|
|
3410
|
+
update!(**args)
|
|
3411
|
+
end
|
|
3412
|
+
|
|
3413
|
+
# Update properties of this object
|
|
3414
|
+
def update!(**args)
|
|
3415
|
+
@multicast_group_consumer_activations = args[:multicast_group_consumer_activations] if args.key?(:multicast_group_consumer_activations)
|
|
3416
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3417
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3418
|
+
end
|
|
3419
|
+
end
|
|
3420
|
+
|
|
3080
3421
|
# The response message for Operations.ListOperations.
|
|
3081
3422
|
class ListOperationsResponse
|
|
3082
3423
|
include Google::Apis::Core::Hashable
|
|
@@ -3505,6 +3846,239 @@ module Google
|
|
|
3505
3846
|
end
|
|
3506
3847
|
end
|
|
3507
3848
|
|
|
3849
|
+
# Multicast consumer association resource.
|
|
3850
|
+
class MulticastConsumerAssociation
|
|
3851
|
+
include Google::Apis::Core::Hashable
|
|
3852
|
+
|
|
3853
|
+
# Output only. [Output only] The timestamp when the multicast consumer
|
|
3854
|
+
# association was created.
|
|
3855
|
+
# Corresponds to the JSON property `createTime`
|
|
3856
|
+
# @return [String]
|
|
3857
|
+
attr_accessor :create_time
|
|
3858
|
+
|
|
3859
|
+
# Optional. An optional text description of the multicast consumer association.
|
|
3860
|
+
# Corresponds to the JSON property `description`
|
|
3861
|
+
# @return [String]
|
|
3862
|
+
attr_accessor :description
|
|
3863
|
+
|
|
3864
|
+
# Optional. Labels as key-value pairs
|
|
3865
|
+
# Corresponds to the JSON property `labels`
|
|
3866
|
+
# @return [Hash<String,String>]
|
|
3867
|
+
attr_accessor :labels
|
|
3868
|
+
|
|
3869
|
+
# Optional. The resource name of the multicast domain activation that is in the
|
|
3870
|
+
# same zone as this multicast consumer association. Use the following format: `
|
|
3871
|
+
# projects/*/locations/*/multicastDomainActivations/*`.
|
|
3872
|
+
# Corresponds to the JSON property `multicastDomainActivation`
|
|
3873
|
+
# @return [String]
|
|
3874
|
+
attr_accessor :multicast_domain_activation
|
|
3875
|
+
|
|
3876
|
+
# Identifier. The resource name of the multicast consumer association. Use the
|
|
3877
|
+
# following format: `projects/*/locations/*/multicastConsumerAssociations/*`.
|
|
3878
|
+
# Corresponds to the JSON property `name`
|
|
3879
|
+
# @return [String]
|
|
3880
|
+
attr_accessor :name
|
|
3881
|
+
|
|
3882
|
+
# Required. The resource name of the multicast consumer VPC network. Use
|
|
3883
|
+
# following format: `projects/`project`/locations/global/networks/`network``.
|
|
3884
|
+
# Corresponds to the JSON property `network`
|
|
3885
|
+
# @return [String]
|
|
3886
|
+
attr_accessor :network
|
|
3887
|
+
|
|
3888
|
+
# Output only. [Output only] A Compute Engine (placement policy)[https://cloud.
|
|
3889
|
+
# google.com/compute/docs/instances/placement-policies-overview] that can be
|
|
3890
|
+
# used to place virtual machine (VM) instances as multicast consumers close to
|
|
3891
|
+
# the multicast infrastructure created for this domain, on a best effort basis.
|
|
3892
|
+
# Corresponds to the JSON property `placementPolicy`
|
|
3893
|
+
# @return [String]
|
|
3894
|
+
attr_accessor :placement_policy
|
|
3895
|
+
|
|
3896
|
+
# Output only. [Deprecated] The resource state of the multicast consumer
|
|
3897
|
+
# association. Use the state field instead.
|
|
3898
|
+
# Corresponds to the JSON property `resourceState`
|
|
3899
|
+
# @return [String]
|
|
3900
|
+
attr_accessor :resource_state
|
|
3901
|
+
|
|
3902
|
+
# The multicast resource's state.
|
|
3903
|
+
# Corresponds to the JSON property `state`
|
|
3904
|
+
# @return [Google::Apis::NetworkservicesV1::MulticastResourceState]
|
|
3905
|
+
attr_accessor :state
|
|
3906
|
+
|
|
3907
|
+
# Output only. [Output only] The Google-generated UUID for the resource. This
|
|
3908
|
+
# value is unique across all multicast consumer association resources. If a
|
|
3909
|
+
# consumer association is deleted and another with the same name is created, the
|
|
3910
|
+
# new consumer association is assigned a different unique_id.
|
|
3911
|
+
# Corresponds to the JSON property `uniqueId`
|
|
3912
|
+
# @return [String]
|
|
3913
|
+
attr_accessor :unique_id
|
|
3914
|
+
|
|
3915
|
+
# Output only. [Output only] The timestamp when the Multicast Consumer
|
|
3916
|
+
# Association was most recently updated.
|
|
3917
|
+
# Corresponds to the JSON property `updateTime`
|
|
3918
|
+
# @return [String]
|
|
3919
|
+
attr_accessor :update_time
|
|
3920
|
+
|
|
3921
|
+
def initialize(**args)
|
|
3922
|
+
update!(**args)
|
|
3923
|
+
end
|
|
3924
|
+
|
|
3925
|
+
# Update properties of this object
|
|
3926
|
+
def update!(**args)
|
|
3927
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3928
|
+
@description = args[:description] if args.key?(:description)
|
|
3929
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
3930
|
+
@multicast_domain_activation = args[:multicast_domain_activation] if args.key?(:multicast_domain_activation)
|
|
3931
|
+
@name = args[:name] if args.key?(:name)
|
|
3932
|
+
@network = args[:network] if args.key?(:network)
|
|
3933
|
+
@placement_policy = args[:placement_policy] if args.key?(:placement_policy)
|
|
3934
|
+
@resource_state = args[:resource_state] if args.key?(:resource_state)
|
|
3935
|
+
@state = args[:state] if args.key?(:state)
|
|
3936
|
+
@unique_id = args[:unique_id] if args.key?(:unique_id)
|
|
3937
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
3938
|
+
end
|
|
3939
|
+
end
|
|
3940
|
+
|
|
3941
|
+
# Multicast group consumer activation resource.
|
|
3942
|
+
class MulticastGroupConsumerActivation
|
|
3943
|
+
include Google::Apis::Core::Hashable
|
|
3944
|
+
|
|
3945
|
+
# Output only. [Output only] The timestamp when the multicast group consumer
|
|
3946
|
+
# activation was created.
|
|
3947
|
+
# Corresponds to the JSON property `createTime`
|
|
3948
|
+
# @return [String]
|
|
3949
|
+
attr_accessor :create_time
|
|
3950
|
+
|
|
3951
|
+
# Optional. An optional text description of the multicast group consumer
|
|
3952
|
+
# activation.
|
|
3953
|
+
# Corresponds to the JSON property `description`
|
|
3954
|
+
# @return [String]
|
|
3955
|
+
attr_accessor :description
|
|
3956
|
+
|
|
3957
|
+
# Optional. Labels as key-value pairs
|
|
3958
|
+
# Corresponds to the JSON property `labels`
|
|
3959
|
+
# @return [Hash<String,String>]
|
|
3960
|
+
attr_accessor :labels
|
|
3961
|
+
|
|
3962
|
+
# The logging configuration.
|
|
3963
|
+
# Corresponds to the JSON property `logConfig`
|
|
3964
|
+
# @return [Google::Apis::NetworkservicesV1::MulticastLogConfig]
|
|
3965
|
+
attr_accessor :log_config
|
|
3966
|
+
|
|
3967
|
+
# Required. The resource name of the multicast consumer association that is in
|
|
3968
|
+
# the same zone as this multicast group consumer activation. Use the following
|
|
3969
|
+
# format: `projects/*/locations/*/multicastConsumerAssociations/*`.
|
|
3970
|
+
# Corresponds to the JSON property `multicastConsumerAssociation`
|
|
3971
|
+
# @return [String]
|
|
3972
|
+
attr_accessor :multicast_consumer_association
|
|
3973
|
+
|
|
3974
|
+
# Optional. The resource name of the multicast group created by the admin in the
|
|
3975
|
+
# same zone as this multicast group consumer activation. Use the following
|
|
3976
|
+
# format: // `projects/*/locations/*/multicastGroups/*`. This field is
|
|
3977
|
+
# deprecated. Use multicast_group_range_activation instead.
|
|
3978
|
+
# Corresponds to the JSON property `multicastGroup`
|
|
3979
|
+
# @return [String]
|
|
3980
|
+
attr_accessor :multicast_group
|
|
3981
|
+
|
|
3982
|
+
# Required. The resource name of the multicast group range activation created by
|
|
3983
|
+
# the admin in the same zone as this multicast group consumer activation. Use
|
|
3984
|
+
# the following format: // `projects/*/locations/*/
|
|
3985
|
+
# multicastGroupRangeActivations/*`.
|
|
3986
|
+
# Corresponds to the JSON property `multicastGroupRangeActivation`
|
|
3987
|
+
# @return [String]
|
|
3988
|
+
attr_accessor :multicast_group_range_activation
|
|
3989
|
+
|
|
3990
|
+
# Identifier. The resource name of the multicast group consumer activation. Use
|
|
3991
|
+
# the following format: `projects/*/locations/*/
|
|
3992
|
+
# multicastGroupConsumerActivations/*`.
|
|
3993
|
+
# Corresponds to the JSON property `name`
|
|
3994
|
+
# @return [String]
|
|
3995
|
+
attr_accessor :name
|
|
3996
|
+
|
|
3997
|
+
# Output only. [Deprecated] The resource state of the multicast group consumer
|
|
3998
|
+
# activation. Use the state field instead.
|
|
3999
|
+
# Corresponds to the JSON property `resourceState`
|
|
4000
|
+
# @return [String]
|
|
4001
|
+
attr_accessor :resource_state
|
|
4002
|
+
|
|
4003
|
+
# The multicast resource's state.
|
|
4004
|
+
# Corresponds to the JSON property `state`
|
|
4005
|
+
# @return [Google::Apis::NetworkservicesV1::MulticastResourceState]
|
|
4006
|
+
attr_accessor :state
|
|
4007
|
+
|
|
4008
|
+
# Output only. [Output only] The Google-generated UUID for the resource. This
|
|
4009
|
+
# value is unique across all multicast group consumer activation resources. If a
|
|
4010
|
+
# group consumer activation is deleted and another with the same name is created,
|
|
4011
|
+
# the new group consumer activation is assigned a different unique_id.
|
|
4012
|
+
# Corresponds to the JSON property `uniqueId`
|
|
4013
|
+
# @return [String]
|
|
4014
|
+
attr_accessor :unique_id
|
|
4015
|
+
|
|
4016
|
+
# Output only. [Output only] The timestamp when the multicast group consumer
|
|
4017
|
+
# activation was most recently updated.
|
|
4018
|
+
# Corresponds to the JSON property `updateTime`
|
|
4019
|
+
# @return [String]
|
|
4020
|
+
attr_accessor :update_time
|
|
4021
|
+
|
|
4022
|
+
def initialize(**args)
|
|
4023
|
+
update!(**args)
|
|
4024
|
+
end
|
|
4025
|
+
|
|
4026
|
+
# Update properties of this object
|
|
4027
|
+
def update!(**args)
|
|
4028
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
4029
|
+
@description = args[:description] if args.key?(:description)
|
|
4030
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
4031
|
+
@log_config = args[:log_config] if args.key?(:log_config)
|
|
4032
|
+
@multicast_consumer_association = args[:multicast_consumer_association] if args.key?(:multicast_consumer_association)
|
|
4033
|
+
@multicast_group = args[:multicast_group] if args.key?(:multicast_group)
|
|
4034
|
+
@multicast_group_range_activation = args[:multicast_group_range_activation] if args.key?(:multicast_group_range_activation)
|
|
4035
|
+
@name = args[:name] if args.key?(:name)
|
|
4036
|
+
@resource_state = args[:resource_state] if args.key?(:resource_state)
|
|
4037
|
+
@state = args[:state] if args.key?(:state)
|
|
4038
|
+
@unique_id = args[:unique_id] if args.key?(:unique_id)
|
|
4039
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
4040
|
+
end
|
|
4041
|
+
end
|
|
4042
|
+
|
|
4043
|
+
# The logging configuration.
|
|
4044
|
+
class MulticastLogConfig
|
|
4045
|
+
include Google::Apis::Core::Hashable
|
|
4046
|
+
|
|
4047
|
+
# Optional. Whether to enable logging or not.
|
|
4048
|
+
# Corresponds to the JSON property `enabled`
|
|
4049
|
+
# @return [Boolean]
|
|
4050
|
+
attr_accessor :enabled
|
|
4051
|
+
alias_method :enabled?, :enabled
|
|
4052
|
+
|
|
4053
|
+
def initialize(**args)
|
|
4054
|
+
update!(**args)
|
|
4055
|
+
end
|
|
4056
|
+
|
|
4057
|
+
# Update properties of this object
|
|
4058
|
+
def update!(**args)
|
|
4059
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
4060
|
+
end
|
|
4061
|
+
end
|
|
4062
|
+
|
|
4063
|
+
# The multicast resource's state.
|
|
4064
|
+
class MulticastResourceState
|
|
4065
|
+
include Google::Apis::Core::Hashable
|
|
4066
|
+
|
|
4067
|
+
# Optional. The state of the multicast resource.
|
|
4068
|
+
# Corresponds to the JSON property `state`
|
|
4069
|
+
# @return [String]
|
|
4070
|
+
attr_accessor :state
|
|
4071
|
+
|
|
4072
|
+
def initialize(**args)
|
|
4073
|
+
update!(**args)
|
|
4074
|
+
end
|
|
4075
|
+
|
|
4076
|
+
# Update properties of this object
|
|
4077
|
+
def update!(**args)
|
|
4078
|
+
@state = args[:state] if args.key?(:state)
|
|
4079
|
+
end
|
|
4080
|
+
end
|
|
4081
|
+
|
|
3508
4082
|
# This resource represents a long-running operation that is the result of a
|
|
3509
4083
|
# network API call.
|
|
3510
4084
|
class Operation
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.72.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260605"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|