google-apis-managedkafka_v1 0.1.0 → 0.3.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.
@@ -46,6 +46,36 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class ConnectAccessConfig
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class ConnectCluster
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class ConnectGcpConfig
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
67
+ class ConnectNetworkConfig
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class Connector
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
49
79
  class ConsumerGroup
50
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
81
 
@@ -82,6 +112,18 @@ module Google
82
112
  include Google::Apis::Core::JsonObjectSupport
83
113
  end
84
114
 
115
+ class ListConnectClustersResponse
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class ListConnectorsResponse
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
85
127
  class ListConsumerGroupsResponse
86
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
129
 
@@ -130,18 +172,72 @@ module Google
130
172
  include Google::Apis::Core::JsonObjectSupport
131
173
  end
132
174
 
175
+ class PauseConnectorRequest
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
181
+ class PauseConnectorResponse
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
133
187
  class RebalanceConfig
134
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
189
 
136
190
  include Google::Apis::Core::JsonObjectSupport
137
191
  end
138
192
 
193
+ class RestartConnectorRequest
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class RestartConnectorResponse
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class ResumeConnectorRequest
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
211
+ class ResumeConnectorResponse
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
139
217
  class Status
140
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
219
 
142
220
  include Google::Apis::Core::JsonObjectSupport
143
221
  end
144
222
 
223
+ class StopConnectorRequest
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
229
+ class StopConnectorResponse
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
235
+ class TaskRetryPolicy
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
145
241
  class Topic
146
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
243
 
@@ -189,6 +285,60 @@ module Google
189
285
  end
190
286
  end
191
287
 
288
+ class ConnectAccessConfig
289
+ # @private
290
+ class Representation < Google::Apis::Core::JsonRepresentation
291
+ collection :network_configs, as: 'networkConfigs', class: Google::Apis::ManagedkafkaV1::ConnectNetworkConfig, decorator: Google::Apis::ManagedkafkaV1::ConnectNetworkConfig::Representation
292
+
293
+ end
294
+ end
295
+
296
+ class ConnectCluster
297
+ # @private
298
+ class Representation < Google::Apis::Core::JsonRepresentation
299
+ property :capacity_config, as: 'capacityConfig', class: Google::Apis::ManagedkafkaV1::CapacityConfig, decorator: Google::Apis::ManagedkafkaV1::CapacityConfig::Representation
300
+
301
+ hash :config, as: 'config'
302
+ property :create_time, as: 'createTime'
303
+ property :gcp_config, as: 'gcpConfig', class: Google::Apis::ManagedkafkaV1::ConnectGcpConfig, decorator: Google::Apis::ManagedkafkaV1::ConnectGcpConfig::Representation
304
+
305
+ property :kafka_cluster, as: 'kafkaCluster'
306
+ hash :labels, as: 'labels'
307
+ property :name, as: 'name'
308
+ property :state, as: 'state'
309
+ property :update_time, as: 'updateTime'
310
+ end
311
+ end
312
+
313
+ class ConnectGcpConfig
314
+ # @private
315
+ class Representation < Google::Apis::Core::JsonRepresentation
316
+ property :access_config, as: 'accessConfig', class: Google::Apis::ManagedkafkaV1::ConnectAccessConfig, decorator: Google::Apis::ManagedkafkaV1::ConnectAccessConfig::Representation
317
+
318
+ collection :secret_paths, as: 'secretPaths'
319
+ end
320
+ end
321
+
322
+ class ConnectNetworkConfig
323
+ # @private
324
+ class Representation < Google::Apis::Core::JsonRepresentation
325
+ collection :additional_subnets, as: 'additionalSubnets'
326
+ collection :dns_domain_names, as: 'dnsDomainNames'
327
+ property :primary_subnet, as: 'primarySubnet'
328
+ end
329
+ end
330
+
331
+ class Connector
332
+ # @private
333
+ class Representation < Google::Apis::Core::JsonRepresentation
334
+ hash :configs, as: 'configs'
335
+ property :name, as: 'name'
336
+ property :state, as: 'state'
337
+ property :task_restart_policy, as: 'taskRestartPolicy', class: Google::Apis::ManagedkafkaV1::TaskRetryPolicy, decorator: Google::Apis::ManagedkafkaV1::TaskRetryPolicy::Representation
338
+
339
+ end
340
+ end
341
+
192
342
  class ConsumerGroup
193
343
  # @private
194
344
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -239,6 +389,25 @@ module Google
239
389
  end
240
390
  end
241
391
 
392
+ class ListConnectClustersResponse
393
+ # @private
394
+ class Representation < Google::Apis::Core::JsonRepresentation
395
+ collection :connect_clusters, as: 'connectClusters', class: Google::Apis::ManagedkafkaV1::ConnectCluster, decorator: Google::Apis::ManagedkafkaV1::ConnectCluster::Representation
396
+
397
+ property :next_page_token, as: 'nextPageToken'
398
+ collection :unreachable, as: 'unreachable'
399
+ end
400
+ end
401
+
402
+ class ListConnectorsResponse
403
+ # @private
404
+ class Representation < Google::Apis::Core::JsonRepresentation
405
+ collection :connectors, as: 'connectors', class: Google::Apis::ManagedkafkaV1::Connector, decorator: Google::Apis::ManagedkafkaV1::Connector::Representation
406
+
407
+ property :next_page_token, as: 'nextPageToken'
408
+ end
409
+ end
410
+
242
411
  class ListConsumerGroupsResponse
243
412
  # @private
244
413
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -318,6 +487,18 @@ module Google
318
487
  end
319
488
  end
320
489
 
490
+ class PauseConnectorRequest
491
+ # @private
492
+ class Representation < Google::Apis::Core::JsonRepresentation
493
+ end
494
+ end
495
+
496
+ class PauseConnectorResponse
497
+ # @private
498
+ class Representation < Google::Apis::Core::JsonRepresentation
499
+ end
500
+ end
501
+
321
502
  class RebalanceConfig
322
503
  # @private
323
504
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -325,6 +506,30 @@ module Google
325
506
  end
326
507
  end
327
508
 
509
+ class RestartConnectorRequest
510
+ # @private
511
+ class Representation < Google::Apis::Core::JsonRepresentation
512
+ end
513
+ end
514
+
515
+ class RestartConnectorResponse
516
+ # @private
517
+ class Representation < Google::Apis::Core::JsonRepresentation
518
+ end
519
+ end
520
+
521
+ class ResumeConnectorRequest
522
+ # @private
523
+ class Representation < Google::Apis::Core::JsonRepresentation
524
+ end
525
+ end
526
+
527
+ class ResumeConnectorResponse
528
+ # @private
529
+ class Representation < Google::Apis::Core::JsonRepresentation
530
+ end
531
+ end
532
+
328
533
  class Status
329
534
  # @private
330
535
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -334,6 +539,26 @@ module Google
334
539
  end
335
540
  end
336
541
 
542
+ class StopConnectorRequest
543
+ # @private
544
+ class Representation < Google::Apis::Core::JsonRepresentation
545
+ end
546
+ end
547
+
548
+ class StopConnectorResponse
549
+ # @private
550
+ class Representation < Google::Apis::Core::JsonRepresentation
551
+ end
552
+ end
553
+
554
+ class TaskRetryPolicy
555
+ # @private
556
+ class Representation < Google::Apis::Core::JsonRepresentation
557
+ property :maximum_backoff, as: 'maximumBackoff'
558
+ property :minimum_backoff, as: 'minimumBackoff'
559
+ end
560
+ end
561
+
337
562
  class Topic
338
563
  # @private
339
564
  class Representation < Google::Apis::Core::JsonRepresentation