google-apis-hypercomputecluster_v1 0.1.0 → 0.2.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: 66ff6daa2b5145b3e96917966208d3a0ad19661200e3ea34cb359e7f3dd948ab
4
- data.tar.gz: ef3b5321bfe2dddfbdefdd323b19855124e863575cedb0302817a55ae80c260d
3
+ metadata.gz: 17fcb5fc0c9ffa0429f1a16398e373decc39257acd897c0892e2c8b183a0bc2b
4
+ data.tar.gz: a751d653a8b8beefe28ecb7fbf909ce539bef2e1158e5cc9abf7e27ecb0781be
5
5
  SHA512:
6
- metadata.gz: b7b9754ec1337b429707c656f1cf818a002c3378aa803ea893972f7b7b577ac71c4ada51e5e3728fbe6aa09427484379891de6d1ef950202bb4ae925fd3924c9
7
- data.tar.gz: dc2253865e6c1684526ed4cd7c2e6862a7770e538e99028046a25df31943bb294b1fdc69149b125dec928ab27b5aaad68d607a32f9bd873b0bc6bd34ee1f4d5c
6
+ metadata.gz: d4dc6a80504791eddf637add5d0ed858b1a9643840e3763ef61a953dfce37b353e58e0376773ed601b967d10ad262e76a0e8f6771a3f1c6311c4a61c17adf447
7
+ data.tar.gz: 4f917a8596122e0b64046ebd582062f013daca29820659aea9a11cfdd778fbc0a385c7217e993568a7e20582b313a9029d60c257e0a62fca442c278ff7c375a3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-hypercomputecluster_v1
2
2
 
3
+ ### v0.2.0 (2026-02-01)
4
+
5
+ * Regenerated from discovery document revision 20260121
6
+
3
7
  ### v0.1.0 (2026-01-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20260114
@@ -83,6 +83,20 @@ module Google
83
83
  end
84
84
  end
85
85
 
86
+ # When set in OperationStep, indicates that cluster health check should be
87
+ # performed.
88
+ class CheckClusterHealth
89
+ include Google::Apis::Core::Hashable
90
+
91
+ def initialize(**args)
92
+ update!(**args)
93
+ end
94
+
95
+ # Update properties of this object
96
+ def update!(**args)
97
+ end
98
+ end
99
+
86
100
  # A collection of virtual machines and connected resources forming a high-
87
101
  # performance computing cluster capable of running large-scale, tightly coupled
88
102
  # workloads. A cluster combines a set a compute resources that perform
@@ -298,6 +312,325 @@ module Google
298
312
  end
299
313
  end
300
314
 
315
+ # When set in OperationStep, indicates that a new filestore instance should be
316
+ # created.
317
+ class CreateFilestoreInstance
318
+ include Google::Apis::Core::Hashable
319
+
320
+ # Output only. Name of the Filestore instance, in the format `projects/`project`/
321
+ # locations/`location`/instances/`instance``
322
+ # Corresponds to the JSON property `filestore`
323
+ # @return [String]
324
+ attr_accessor :filestore
325
+
326
+ def initialize(**args)
327
+ update!(**args)
328
+ end
329
+
330
+ # Update properties of this object
331
+ def update!(**args)
332
+ @filestore = args[:filestore] if args.key?(:filestore)
333
+ end
334
+ end
335
+
336
+ # When set in OperationStep, indicates that a login node should be created.
337
+ class CreateLoginNode
338
+ include Google::Apis::Core::Hashable
339
+
340
+ def initialize(**args)
341
+ update!(**args)
342
+ end
343
+
344
+ # Update properties of this object
345
+ def update!(**args)
346
+ end
347
+ end
348
+
349
+ # When set in OperationStep, indicates that a new lustre instance should be
350
+ # created.
351
+ class CreateLustreInstance
352
+ include Google::Apis::Core::Hashable
353
+
354
+ # Output only. Name of the Managed Lustre instance, in the format `projects/`
355
+ # project`/locations/`location`/instances/`instance``
356
+ # Corresponds to the JSON property `lustre`
357
+ # @return [String]
358
+ attr_accessor :lustre
359
+
360
+ def initialize(**args)
361
+ update!(**args)
362
+ end
363
+
364
+ # Update properties of this object
365
+ def update!(**args)
366
+ @lustre = args[:lustre] if args.key?(:lustre)
367
+ end
368
+ end
369
+
370
+ # When set in OperationStep, indicates that a new network should be created.
371
+ class CreateNetwork
372
+ include Google::Apis::Core::Hashable
373
+
374
+ # Output only. Name of the network to create, in the format `projects/`project`/
375
+ # global/networks/`network``.
376
+ # Corresponds to the JSON property `network`
377
+ # @return [String]
378
+ attr_accessor :network
379
+
380
+ def initialize(**args)
381
+ update!(**args)
382
+ end
383
+
384
+ # Update properties of this object
385
+ def update!(**args)
386
+ @network = args[:network] if args.key?(:network)
387
+ end
388
+ end
389
+
390
+ # When set in OperationStep, indicates that a nodeset should be created.
391
+ class CreateNodeset
392
+ include Google::Apis::Core::Hashable
393
+
394
+ # Output only. Name of the nodeset to create
395
+ # Corresponds to the JSON property `nodesets`
396
+ # @return [Array<String>]
397
+ attr_accessor :nodesets
398
+
399
+ def initialize(**args)
400
+ update!(**args)
401
+ end
402
+
403
+ # Update properties of this object
404
+ def update!(**args)
405
+ @nodesets = args[:nodesets] if args.key?(:nodesets)
406
+ end
407
+ end
408
+
409
+ # When set in OperationStep, indicates that an orchestrator should be created.
410
+ class CreateOrchestrator
411
+ include Google::Apis::Core::Hashable
412
+
413
+ def initialize(**args)
414
+ update!(**args)
415
+ end
416
+
417
+ # Update properties of this object
418
+ def update!(**args)
419
+ end
420
+ end
421
+
422
+ # When set in OperationStep, indicates that a partition should be created.
423
+ class CreatePartition
424
+ include Google::Apis::Core::Hashable
425
+
426
+ # Output only. Name of the partition to create
427
+ # Corresponds to the JSON property `partitions`
428
+ # @return [Array<String>]
429
+ attr_accessor :partitions
430
+
431
+ def initialize(**args)
432
+ update!(**args)
433
+ end
434
+
435
+ # Update properties of this object
436
+ def update!(**args)
437
+ @partitions = args[:partitions] if args.key?(:partitions)
438
+ end
439
+ end
440
+
441
+ # When set in OperationStep, indicates that a new private service access should
442
+ # be created.
443
+ class CreatePrivateServiceAccess
444
+ include Google::Apis::Core::Hashable
445
+
446
+ def initialize(**args)
447
+ update!(**args)
448
+ end
449
+
450
+ # Update properties of this object
451
+ def update!(**args)
452
+ end
453
+ end
454
+
455
+ # When set in OperationStep, indicates that a new storage bucket should be
456
+ # created.
457
+ class CreateStorageBucket
458
+ include Google::Apis::Core::Hashable
459
+
460
+ # Output only. Name of the bucket.
461
+ # Corresponds to the JSON property `bucket`
462
+ # @return [String]
463
+ attr_accessor :bucket
464
+
465
+ def initialize(**args)
466
+ update!(**args)
467
+ end
468
+
469
+ # Update properties of this object
470
+ def update!(**args)
471
+ @bucket = args[:bucket] if args.key?(:bucket)
472
+ end
473
+ end
474
+
475
+ # When set in OperationStep, indicates that a Filestore instance should be
476
+ # deleted.
477
+ class DeleteFilestoreInstance
478
+ include Google::Apis::Core::Hashable
479
+
480
+ # Output only. Name of the Filestore instance, in the format `projects/`project`/
481
+ # locations/`location`/instances/`instance``
482
+ # Corresponds to the JSON property `filestore`
483
+ # @return [String]
484
+ attr_accessor :filestore
485
+
486
+ def initialize(**args)
487
+ update!(**args)
488
+ end
489
+
490
+ # Update properties of this object
491
+ def update!(**args)
492
+ @filestore = args[:filestore] if args.key?(:filestore)
493
+ end
494
+ end
495
+
496
+ # When set in OperationStep, indicates that a login node should be deleted.
497
+ class DeleteLoginNode
498
+ include Google::Apis::Core::Hashable
499
+
500
+ def initialize(**args)
501
+ update!(**args)
502
+ end
503
+
504
+ # Update properties of this object
505
+ def update!(**args)
506
+ end
507
+ end
508
+
509
+ # When set in OperationStep, indicates that a Lustre instance should be deleted.
510
+ class DeleteLustreInstance
511
+ include Google::Apis::Core::Hashable
512
+
513
+ # Output only. Name of the Managed Lustre instance, in the format `projects/`
514
+ # project`/locations/`location`/instances/`instance``
515
+ # Corresponds to the JSON property `lustre`
516
+ # @return [String]
517
+ attr_accessor :lustre
518
+
519
+ def initialize(**args)
520
+ update!(**args)
521
+ end
522
+
523
+ # Update properties of this object
524
+ def update!(**args)
525
+ @lustre = args[:lustre] if args.key?(:lustre)
526
+ end
527
+ end
528
+
529
+ # When set in OperationStep, indicates network deletion step with the resource
530
+ # name.
531
+ class DeleteNetwork
532
+ include Google::Apis::Core::Hashable
533
+
534
+ # Output only. Name of the network to delete, in the format `projects/`project`/
535
+ # global/networks/`network``.
536
+ # Corresponds to the JSON property `network`
537
+ # @return [String]
538
+ attr_accessor :network
539
+
540
+ def initialize(**args)
541
+ update!(**args)
542
+ end
543
+
544
+ # Update properties of this object
545
+ def update!(**args)
546
+ @network = args[:network] if args.key?(:network)
547
+ end
548
+ end
549
+
550
+ # When set in OperationStep, indicates that a nodeset should be deleted.
551
+ class DeleteNodeset
552
+ include Google::Apis::Core::Hashable
553
+
554
+ # Output only. Name of the nodeset to delete
555
+ # Corresponds to the JSON property `nodesets`
556
+ # @return [Array<String>]
557
+ attr_accessor :nodesets
558
+
559
+ def initialize(**args)
560
+ update!(**args)
561
+ end
562
+
563
+ # Update properties of this object
564
+ def update!(**args)
565
+ @nodesets = args[:nodesets] if args.key?(:nodesets)
566
+ end
567
+ end
568
+
569
+ # When set in OperationStep, indicates that an orchestrator should be deleted.
570
+ class DeleteOrchestrator
571
+ include Google::Apis::Core::Hashable
572
+
573
+ def initialize(**args)
574
+ update!(**args)
575
+ end
576
+
577
+ # Update properties of this object
578
+ def update!(**args)
579
+ end
580
+ end
581
+
582
+ # When set in OperationStep, indicates that a partition should be deleted.
583
+ class DeletePartition
584
+ include Google::Apis::Core::Hashable
585
+
586
+ # Output only. Name of the partition to delete
587
+ # Corresponds to the JSON property `partitions`
588
+ # @return [Array<String>]
589
+ attr_accessor :partitions
590
+
591
+ def initialize(**args)
592
+ update!(**args)
593
+ end
594
+
595
+ # Update properties of this object
596
+ def update!(**args)
597
+ @partitions = args[:partitions] if args.key?(:partitions)
598
+ end
599
+ end
600
+
601
+ # When set in OperationStep, indicates private service access deletion step.
602
+ class DeletePrivateServiceAccess
603
+ include Google::Apis::Core::Hashable
604
+
605
+ def initialize(**args)
606
+ update!(**args)
607
+ end
608
+
609
+ # Update properties of this object
610
+ def update!(**args)
611
+ end
612
+ end
613
+
614
+ # When set in OperationStep, indicates that Cloud Storage bucket should be
615
+ # deleted.
616
+ class DeleteStorageBucket
617
+ include Google::Apis::Core::Hashable
618
+
619
+ # Output only. Name of the bucket.
620
+ # Corresponds to the JSON property `bucket`
621
+ # @return [String]
622
+ attr_accessor :bucket
623
+
624
+ def initialize(**args)
625
+ update!(**args)
626
+ end
627
+
628
+ # Update properties of this object
629
+ def update!(**args)
630
+ @bucket = args[:bucket] if args.key?(:bucket)
631
+ end
632
+ end
633
+
301
634
  # A generic empty message that you can re-use to avoid defining duplicated empty
302
635
  # messages in your APIs. A typical example is to use it as the request or the
303
636
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1104,6 +1437,12 @@ module Google
1104
1437
  # @return [String]
1105
1438
  attr_accessor :end_time
1106
1439
 
1440
+ # Message describing the progress of a cluster mutation long-running operation.
1441
+ # operation.
1442
+ # Corresponds to the JSON property `progress`
1443
+ # @return [Google::Apis::HypercomputeclusterV1::OperationProgress]
1444
+ attr_accessor :progress
1445
+
1107
1446
  # Output only. Identifies whether the user has requested cancellation of the
1108
1447
  # operation. Operations that have been cancelled successfully have google.
1109
1448
  # longrunning.Operation.error value with a google.rpc.Status.code of `1`,
@@ -1132,12 +1471,199 @@ module Google
1132
1471
  @api_version = args[:api_version] if args.key?(:api_version)
1133
1472
  @create_time = args[:create_time] if args.key?(:create_time)
1134
1473
  @end_time = args[:end_time] if args.key?(:end_time)
1474
+ @progress = args[:progress] if args.key?(:progress)
1135
1475
  @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1136
1476
  @target = args[:target] if args.key?(:target)
1137
1477
  @verb = args[:verb] if args.key?(:verb)
1138
1478
  end
1139
1479
  end
1140
1480
 
1481
+ # Message describing the progress of a cluster mutation long-running operation.
1482
+ # operation.
1483
+ class OperationProgress
1484
+ include Google::Apis::Core::Hashable
1485
+
1486
+ # Output only. Steps and status of the operation.
1487
+ # Corresponds to the JSON property `steps`
1488
+ # @return [Array<Google::Apis::HypercomputeclusterV1::OperationStep>]
1489
+ attr_accessor :steps
1490
+
1491
+ def initialize(**args)
1492
+ update!(**args)
1493
+ end
1494
+
1495
+ # Update properties of this object
1496
+ def update!(**args)
1497
+ @steps = args[:steps] if args.key?(:steps)
1498
+ end
1499
+ end
1500
+
1501
+ # Message describing the status of a single step in a cluster mutation long-
1502
+ # running operation.
1503
+ class OperationStep
1504
+ include Google::Apis::Core::Hashable
1505
+
1506
+ # When set in OperationStep, indicates that cluster health check should be
1507
+ # performed.
1508
+ # Corresponds to the JSON property `checkClusterHealth`
1509
+ # @return [Google::Apis::HypercomputeclusterV1::CheckClusterHealth]
1510
+ attr_accessor :check_cluster_health
1511
+
1512
+ # When set in OperationStep, indicates that a new filestore instance should be
1513
+ # created.
1514
+ # Corresponds to the JSON property `createFilestoreInstance`
1515
+ # @return [Google::Apis::HypercomputeclusterV1::CreateFilestoreInstance]
1516
+ attr_accessor :create_filestore_instance
1517
+
1518
+ # When set in OperationStep, indicates that a login node should be created.
1519
+ # Corresponds to the JSON property `createLoginNode`
1520
+ # @return [Google::Apis::HypercomputeclusterV1::CreateLoginNode]
1521
+ attr_accessor :create_login_node
1522
+
1523
+ # When set in OperationStep, indicates that a new lustre instance should be
1524
+ # created.
1525
+ # Corresponds to the JSON property `createLustreInstance`
1526
+ # @return [Google::Apis::HypercomputeclusterV1::CreateLustreInstance]
1527
+ attr_accessor :create_lustre_instance
1528
+
1529
+ # When set in OperationStep, indicates that a new network should be created.
1530
+ # Corresponds to the JSON property `createNetwork`
1531
+ # @return [Google::Apis::HypercomputeclusterV1::CreateNetwork]
1532
+ attr_accessor :create_network
1533
+
1534
+ # When set in OperationStep, indicates that a nodeset should be created.
1535
+ # Corresponds to the JSON property `createNodeset`
1536
+ # @return [Google::Apis::HypercomputeclusterV1::CreateNodeset]
1537
+ attr_accessor :create_nodeset
1538
+
1539
+ # When set in OperationStep, indicates that an orchestrator should be created.
1540
+ # Corresponds to the JSON property `createOrchestrator`
1541
+ # @return [Google::Apis::HypercomputeclusterV1::CreateOrchestrator]
1542
+ attr_accessor :create_orchestrator
1543
+
1544
+ # When set in OperationStep, indicates that a partition should be created.
1545
+ # Corresponds to the JSON property `createPartition`
1546
+ # @return [Google::Apis::HypercomputeclusterV1::CreatePartition]
1547
+ attr_accessor :create_partition
1548
+
1549
+ # When set in OperationStep, indicates that a new private service access should
1550
+ # be created.
1551
+ # Corresponds to the JSON property `createPrivateServiceAccess`
1552
+ # @return [Google::Apis::HypercomputeclusterV1::CreatePrivateServiceAccess]
1553
+ attr_accessor :create_private_service_access
1554
+
1555
+ # When set in OperationStep, indicates that a new storage bucket should be
1556
+ # created.
1557
+ # Corresponds to the JSON property `createStorageBucket`
1558
+ # @return [Google::Apis::HypercomputeclusterV1::CreateStorageBucket]
1559
+ attr_accessor :create_storage_bucket
1560
+
1561
+ # When set in OperationStep, indicates that a Filestore instance should be
1562
+ # deleted.
1563
+ # Corresponds to the JSON property `deleteFilestoreInstance`
1564
+ # @return [Google::Apis::HypercomputeclusterV1::DeleteFilestoreInstance]
1565
+ attr_accessor :delete_filestore_instance
1566
+
1567
+ # When set in OperationStep, indicates that a login node should be deleted.
1568
+ # Corresponds to the JSON property `deleteLoginNode`
1569
+ # @return [Google::Apis::HypercomputeclusterV1::DeleteLoginNode]
1570
+ attr_accessor :delete_login_node
1571
+
1572
+ # When set in OperationStep, indicates that a Lustre instance should be deleted.
1573
+ # Corresponds to the JSON property `deleteLustreInstance`
1574
+ # @return [Google::Apis::HypercomputeclusterV1::DeleteLustreInstance]
1575
+ attr_accessor :delete_lustre_instance
1576
+
1577
+ # When set in OperationStep, indicates network deletion step with the resource
1578
+ # name.
1579
+ # Corresponds to the JSON property `deleteNetwork`
1580
+ # @return [Google::Apis::HypercomputeclusterV1::DeleteNetwork]
1581
+ attr_accessor :delete_network
1582
+
1583
+ # When set in OperationStep, indicates that a nodeset should be deleted.
1584
+ # Corresponds to the JSON property `deleteNodeset`
1585
+ # @return [Google::Apis::HypercomputeclusterV1::DeleteNodeset]
1586
+ attr_accessor :delete_nodeset
1587
+
1588
+ # When set in OperationStep, indicates that an orchestrator should be deleted.
1589
+ # Corresponds to the JSON property `deleteOrchestrator`
1590
+ # @return [Google::Apis::HypercomputeclusterV1::DeleteOrchestrator]
1591
+ attr_accessor :delete_orchestrator
1592
+
1593
+ # When set in OperationStep, indicates that a partition should be deleted.
1594
+ # Corresponds to the JSON property `deletePartition`
1595
+ # @return [Google::Apis::HypercomputeclusterV1::DeletePartition]
1596
+ attr_accessor :delete_partition
1597
+
1598
+ # When set in OperationStep, indicates private service access deletion step.
1599
+ # Corresponds to the JSON property `deletePrivateServiceAccess`
1600
+ # @return [Google::Apis::HypercomputeclusterV1::DeletePrivateServiceAccess]
1601
+ attr_accessor :delete_private_service_access
1602
+
1603
+ # When set in OperationStep, indicates that Cloud Storage bucket should be
1604
+ # deleted.
1605
+ # Corresponds to the JSON property `deleteStorageBucket`
1606
+ # @return [Google::Apis::HypercomputeclusterV1::DeleteStorageBucket]
1607
+ attr_accessor :delete_storage_bucket
1608
+
1609
+ # Output only. State of the operation step.
1610
+ # Corresponds to the JSON property `state`
1611
+ # @return [String]
1612
+ attr_accessor :state
1613
+
1614
+ # When set in OperationStep, indicates that a login node should be updated.
1615
+ # Corresponds to the JSON property `updateLoginNode`
1616
+ # @return [Google::Apis::HypercomputeclusterV1::UpdateLoginNode]
1617
+ attr_accessor :update_login_node
1618
+
1619
+ # When set in OperationStep, indicates that a nodeset should be updated.
1620
+ # Corresponds to the JSON property `updateNodeset`
1621
+ # @return [Google::Apis::HypercomputeclusterV1::UpdateNodeset]
1622
+ attr_accessor :update_nodeset
1623
+
1624
+ # When set in OperationStep, indicates that an orchestrator should be updated.
1625
+ # Corresponds to the JSON property `updateOrchestrator`
1626
+ # @return [Google::Apis::HypercomputeclusterV1::UpdateOrchestrator]
1627
+ attr_accessor :update_orchestrator
1628
+
1629
+ # When set in OperationStep, indicates that a partition should be updated.
1630
+ # Corresponds to the JSON property `updatePartition`
1631
+ # @return [Google::Apis::HypercomputeclusterV1::UpdatePartition]
1632
+ attr_accessor :update_partition
1633
+
1634
+ def initialize(**args)
1635
+ update!(**args)
1636
+ end
1637
+
1638
+ # Update properties of this object
1639
+ def update!(**args)
1640
+ @check_cluster_health = args[:check_cluster_health] if args.key?(:check_cluster_health)
1641
+ @create_filestore_instance = args[:create_filestore_instance] if args.key?(:create_filestore_instance)
1642
+ @create_login_node = args[:create_login_node] if args.key?(:create_login_node)
1643
+ @create_lustre_instance = args[:create_lustre_instance] if args.key?(:create_lustre_instance)
1644
+ @create_network = args[:create_network] if args.key?(:create_network)
1645
+ @create_nodeset = args[:create_nodeset] if args.key?(:create_nodeset)
1646
+ @create_orchestrator = args[:create_orchestrator] if args.key?(:create_orchestrator)
1647
+ @create_partition = args[:create_partition] if args.key?(:create_partition)
1648
+ @create_private_service_access = args[:create_private_service_access] if args.key?(:create_private_service_access)
1649
+ @create_storage_bucket = args[:create_storage_bucket] if args.key?(:create_storage_bucket)
1650
+ @delete_filestore_instance = args[:delete_filestore_instance] if args.key?(:delete_filestore_instance)
1651
+ @delete_login_node = args[:delete_login_node] if args.key?(:delete_login_node)
1652
+ @delete_lustre_instance = args[:delete_lustre_instance] if args.key?(:delete_lustre_instance)
1653
+ @delete_network = args[:delete_network] if args.key?(:delete_network)
1654
+ @delete_nodeset = args[:delete_nodeset] if args.key?(:delete_nodeset)
1655
+ @delete_orchestrator = args[:delete_orchestrator] if args.key?(:delete_orchestrator)
1656
+ @delete_partition = args[:delete_partition] if args.key?(:delete_partition)
1657
+ @delete_private_service_access = args[:delete_private_service_access] if args.key?(:delete_private_service_access)
1658
+ @delete_storage_bucket = args[:delete_storage_bucket] if args.key?(:delete_storage_bucket)
1659
+ @state = args[:state] if args.key?(:state)
1660
+ @update_login_node = args[:update_login_node] if args.key?(:update_login_node)
1661
+ @update_nodeset = args[:update_nodeset] if args.key?(:update_nodeset)
1662
+ @update_orchestrator = args[:update_orchestrator] if args.key?(:update_orchestrator)
1663
+ @update_partition = args[:update_partition] if args.key?(:update_partition)
1664
+ end
1665
+ end
1666
+
1141
1667
  # The component responsible for scheduling and running workloads on the cluster
1142
1668
  # as well as providing the user interface for interacting with the cluster at
1143
1669
  # runtime.
@@ -1566,6 +2092,70 @@ module Google
1566
2092
  @new_lustre = args[:new_lustre] if args.key?(:new_lustre)
1567
2093
  end
1568
2094
  end
2095
+
2096
+ # When set in OperationStep, indicates that a login node should be updated.
2097
+ class UpdateLoginNode
2098
+ include Google::Apis::Core::Hashable
2099
+
2100
+ def initialize(**args)
2101
+ update!(**args)
2102
+ end
2103
+
2104
+ # Update properties of this object
2105
+ def update!(**args)
2106
+ end
2107
+ end
2108
+
2109
+ # When set in OperationStep, indicates that a nodeset should be updated.
2110
+ class UpdateNodeset
2111
+ include Google::Apis::Core::Hashable
2112
+
2113
+ # Output only. Name of the nodeset to update
2114
+ # Corresponds to the JSON property `nodesets`
2115
+ # @return [Array<String>]
2116
+ attr_accessor :nodesets
2117
+
2118
+ def initialize(**args)
2119
+ update!(**args)
2120
+ end
2121
+
2122
+ # Update properties of this object
2123
+ def update!(**args)
2124
+ @nodesets = args[:nodesets] if args.key?(:nodesets)
2125
+ end
2126
+ end
2127
+
2128
+ # When set in OperationStep, indicates that an orchestrator should be updated.
2129
+ class UpdateOrchestrator
2130
+ include Google::Apis::Core::Hashable
2131
+
2132
+ def initialize(**args)
2133
+ update!(**args)
2134
+ end
2135
+
2136
+ # Update properties of this object
2137
+ def update!(**args)
2138
+ end
2139
+ end
2140
+
2141
+ # When set in OperationStep, indicates that a partition should be updated.
2142
+ class UpdatePartition
2143
+ include Google::Apis::Core::Hashable
2144
+
2145
+ # Output only. Name of the partition to update
2146
+ # Corresponds to the JSON property `partitions`
2147
+ # @return [Array<String>]
2148
+ attr_accessor :partitions
2149
+
2150
+ def initialize(**args)
2151
+ update!(**args)
2152
+ end
2153
+
2154
+ # Update properties of this object
2155
+ def update!(**args)
2156
+ @partitions = args[:partitions] if args.key?(:partitions)
2157
+ end
2158
+ end
1569
2159
  end
1570
2160
  end
1571
2161
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module HypercomputeclusterV1
18
18
  # Version of the google-apis-hypercomputecluster_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260114"
25
+ REVISION = "20260121"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class CheckClusterHealth
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class Cluster
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -70,6 +76,114 @@ module Google
70
76
  include Google::Apis::Core::JsonObjectSupport
71
77
  end
72
78
 
79
+ class CreateFilestoreInstance
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
85
+ class CreateLoginNode
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
91
+ class CreateLustreInstance
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
97
+ class CreateNetwork
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
103
+ class CreateNodeset
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
109
+ class CreateOrchestrator
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
115
+ class CreatePartition
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class CreatePrivateServiceAccess
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
127
+ class CreateStorageBucket
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class DeleteFilestoreInstance
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
139
+ class DeleteLoginNode
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
145
+ class DeleteLustreInstance
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
151
+ class DeleteNetwork
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
157
+ class DeleteNodeset
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class DeleteOrchestrator
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class DeletePartition
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class DeletePrivateServiceAccess
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
181
+ class DeleteStorageBucket
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
73
187
  class Empty
74
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
189
 
@@ -232,6 +346,18 @@ module Google
232
346
  include Google::Apis::Core::JsonObjectSupport
233
347
  end
234
348
 
349
+ class OperationProgress
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
355
+ class OperationStep
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
235
361
  class Orchestrator
236
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
363
 
@@ -286,6 +412,30 @@ module Google
286
412
  include Google::Apis::Core::JsonObjectSupport
287
413
  end
288
414
 
415
+ class UpdateLoginNode
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
421
+ class UpdateNodeset
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
427
+ class UpdateOrchestrator
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
433
+ class UpdatePartition
434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
435
+
436
+ include Google::Apis::Core::JsonObjectSupport
437
+ end
438
+
289
439
  class BootDisk
290
440
  # @private
291
441
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -307,6 +457,12 @@ module Google
307
457
  end
308
458
  end
309
459
 
460
+ class CheckClusterHealth
461
+ # @private
462
+ class Representation < Google::Apis::Core::JsonRepresentation
463
+ end
464
+ end
465
+
310
466
  class Cluster
311
467
  # @private
312
468
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -366,6 +522,126 @@ module Google
366
522
  end
367
523
  end
368
524
 
525
+ class CreateFilestoreInstance
526
+ # @private
527
+ class Representation < Google::Apis::Core::JsonRepresentation
528
+ property :filestore, as: 'filestore'
529
+ end
530
+ end
531
+
532
+ class CreateLoginNode
533
+ # @private
534
+ class Representation < Google::Apis::Core::JsonRepresentation
535
+ end
536
+ end
537
+
538
+ class CreateLustreInstance
539
+ # @private
540
+ class Representation < Google::Apis::Core::JsonRepresentation
541
+ property :lustre, as: 'lustre'
542
+ end
543
+ end
544
+
545
+ class CreateNetwork
546
+ # @private
547
+ class Representation < Google::Apis::Core::JsonRepresentation
548
+ property :network, as: 'network'
549
+ end
550
+ end
551
+
552
+ class CreateNodeset
553
+ # @private
554
+ class Representation < Google::Apis::Core::JsonRepresentation
555
+ collection :nodesets, as: 'nodesets'
556
+ end
557
+ end
558
+
559
+ class CreateOrchestrator
560
+ # @private
561
+ class Representation < Google::Apis::Core::JsonRepresentation
562
+ end
563
+ end
564
+
565
+ class CreatePartition
566
+ # @private
567
+ class Representation < Google::Apis::Core::JsonRepresentation
568
+ collection :partitions, as: 'partitions'
569
+ end
570
+ end
571
+
572
+ class CreatePrivateServiceAccess
573
+ # @private
574
+ class Representation < Google::Apis::Core::JsonRepresentation
575
+ end
576
+ end
577
+
578
+ class CreateStorageBucket
579
+ # @private
580
+ class Representation < Google::Apis::Core::JsonRepresentation
581
+ property :bucket, as: 'bucket'
582
+ end
583
+ end
584
+
585
+ class DeleteFilestoreInstance
586
+ # @private
587
+ class Representation < Google::Apis::Core::JsonRepresentation
588
+ property :filestore, as: 'filestore'
589
+ end
590
+ end
591
+
592
+ class DeleteLoginNode
593
+ # @private
594
+ class Representation < Google::Apis::Core::JsonRepresentation
595
+ end
596
+ end
597
+
598
+ class DeleteLustreInstance
599
+ # @private
600
+ class Representation < Google::Apis::Core::JsonRepresentation
601
+ property :lustre, as: 'lustre'
602
+ end
603
+ end
604
+
605
+ class DeleteNetwork
606
+ # @private
607
+ class Representation < Google::Apis::Core::JsonRepresentation
608
+ property :network, as: 'network'
609
+ end
610
+ end
611
+
612
+ class DeleteNodeset
613
+ # @private
614
+ class Representation < Google::Apis::Core::JsonRepresentation
615
+ collection :nodesets, as: 'nodesets'
616
+ end
617
+ end
618
+
619
+ class DeleteOrchestrator
620
+ # @private
621
+ class Representation < Google::Apis::Core::JsonRepresentation
622
+ end
623
+ end
624
+
625
+ class DeletePartition
626
+ # @private
627
+ class Representation < Google::Apis::Core::JsonRepresentation
628
+ collection :partitions, as: 'partitions'
629
+ end
630
+ end
631
+
632
+ class DeletePrivateServiceAccess
633
+ # @private
634
+ class Representation < Google::Apis::Core::JsonRepresentation
635
+ end
636
+ end
637
+
638
+ class DeleteStorageBucket
639
+ # @private
640
+ class Representation < Google::Apis::Core::JsonRepresentation
641
+ property :bucket, as: 'bucket'
642
+ end
643
+ end
644
+
369
645
  class Empty
370
646
  # @private
371
647
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -599,12 +875,75 @@ module Google
599
875
  property :api_version, as: 'apiVersion'
600
876
  property :create_time, as: 'createTime'
601
877
  property :end_time, as: 'endTime'
878
+ property :progress, as: 'progress', class: Google::Apis::HypercomputeclusterV1::OperationProgress, decorator: Google::Apis::HypercomputeclusterV1::OperationProgress::Representation
879
+
602
880
  property :requested_cancellation, as: 'requestedCancellation'
603
881
  property :target, as: 'target'
604
882
  property :verb, as: 'verb'
605
883
  end
606
884
  end
607
885
 
886
+ class OperationProgress
887
+ # @private
888
+ class Representation < Google::Apis::Core::JsonRepresentation
889
+ collection :steps, as: 'steps', class: Google::Apis::HypercomputeclusterV1::OperationStep, decorator: Google::Apis::HypercomputeclusterV1::OperationStep::Representation
890
+
891
+ end
892
+ end
893
+
894
+ class OperationStep
895
+ # @private
896
+ class Representation < Google::Apis::Core::JsonRepresentation
897
+ property :check_cluster_health, as: 'checkClusterHealth', class: Google::Apis::HypercomputeclusterV1::CheckClusterHealth, decorator: Google::Apis::HypercomputeclusterV1::CheckClusterHealth::Representation
898
+
899
+ property :create_filestore_instance, as: 'createFilestoreInstance', class: Google::Apis::HypercomputeclusterV1::CreateFilestoreInstance, decorator: Google::Apis::HypercomputeclusterV1::CreateFilestoreInstance::Representation
900
+
901
+ property :create_login_node, as: 'createLoginNode', class: Google::Apis::HypercomputeclusterV1::CreateLoginNode, decorator: Google::Apis::HypercomputeclusterV1::CreateLoginNode::Representation
902
+
903
+ property :create_lustre_instance, as: 'createLustreInstance', class: Google::Apis::HypercomputeclusterV1::CreateLustreInstance, decorator: Google::Apis::HypercomputeclusterV1::CreateLustreInstance::Representation
904
+
905
+ property :create_network, as: 'createNetwork', class: Google::Apis::HypercomputeclusterV1::CreateNetwork, decorator: Google::Apis::HypercomputeclusterV1::CreateNetwork::Representation
906
+
907
+ property :create_nodeset, as: 'createNodeset', class: Google::Apis::HypercomputeclusterV1::CreateNodeset, decorator: Google::Apis::HypercomputeclusterV1::CreateNodeset::Representation
908
+
909
+ property :create_orchestrator, as: 'createOrchestrator', class: Google::Apis::HypercomputeclusterV1::CreateOrchestrator, decorator: Google::Apis::HypercomputeclusterV1::CreateOrchestrator::Representation
910
+
911
+ property :create_partition, as: 'createPartition', class: Google::Apis::HypercomputeclusterV1::CreatePartition, decorator: Google::Apis::HypercomputeclusterV1::CreatePartition::Representation
912
+
913
+ property :create_private_service_access, as: 'createPrivateServiceAccess', class: Google::Apis::HypercomputeclusterV1::CreatePrivateServiceAccess, decorator: Google::Apis::HypercomputeclusterV1::CreatePrivateServiceAccess::Representation
914
+
915
+ property :create_storage_bucket, as: 'createStorageBucket', class: Google::Apis::HypercomputeclusterV1::CreateStorageBucket, decorator: Google::Apis::HypercomputeclusterV1::CreateStorageBucket::Representation
916
+
917
+ property :delete_filestore_instance, as: 'deleteFilestoreInstance', class: Google::Apis::HypercomputeclusterV1::DeleteFilestoreInstance, decorator: Google::Apis::HypercomputeclusterV1::DeleteFilestoreInstance::Representation
918
+
919
+ property :delete_login_node, as: 'deleteLoginNode', class: Google::Apis::HypercomputeclusterV1::DeleteLoginNode, decorator: Google::Apis::HypercomputeclusterV1::DeleteLoginNode::Representation
920
+
921
+ property :delete_lustre_instance, as: 'deleteLustreInstance', class: Google::Apis::HypercomputeclusterV1::DeleteLustreInstance, decorator: Google::Apis::HypercomputeclusterV1::DeleteLustreInstance::Representation
922
+
923
+ property :delete_network, as: 'deleteNetwork', class: Google::Apis::HypercomputeclusterV1::DeleteNetwork, decorator: Google::Apis::HypercomputeclusterV1::DeleteNetwork::Representation
924
+
925
+ property :delete_nodeset, as: 'deleteNodeset', class: Google::Apis::HypercomputeclusterV1::DeleteNodeset, decorator: Google::Apis::HypercomputeclusterV1::DeleteNodeset::Representation
926
+
927
+ property :delete_orchestrator, as: 'deleteOrchestrator', class: Google::Apis::HypercomputeclusterV1::DeleteOrchestrator, decorator: Google::Apis::HypercomputeclusterV1::DeleteOrchestrator::Representation
928
+
929
+ property :delete_partition, as: 'deletePartition', class: Google::Apis::HypercomputeclusterV1::DeletePartition, decorator: Google::Apis::HypercomputeclusterV1::DeletePartition::Representation
930
+
931
+ property :delete_private_service_access, as: 'deletePrivateServiceAccess', class: Google::Apis::HypercomputeclusterV1::DeletePrivateServiceAccess, decorator: Google::Apis::HypercomputeclusterV1::DeletePrivateServiceAccess::Representation
932
+
933
+ property :delete_storage_bucket, as: 'deleteStorageBucket', class: Google::Apis::HypercomputeclusterV1::DeleteStorageBucket, decorator: Google::Apis::HypercomputeclusterV1::DeleteStorageBucket::Representation
934
+
935
+ property :state, as: 'state'
936
+ property :update_login_node, as: 'updateLoginNode', class: Google::Apis::HypercomputeclusterV1::UpdateLoginNode, decorator: Google::Apis::HypercomputeclusterV1::UpdateLoginNode::Representation
937
+
938
+ property :update_nodeset, as: 'updateNodeset', class: Google::Apis::HypercomputeclusterV1::UpdateNodeset, decorator: Google::Apis::HypercomputeclusterV1::UpdateNodeset::Representation
939
+
940
+ property :update_orchestrator, as: 'updateOrchestrator', class: Google::Apis::HypercomputeclusterV1::UpdateOrchestrator, decorator: Google::Apis::HypercomputeclusterV1::UpdateOrchestrator::Representation
941
+
942
+ property :update_partition, as: 'updatePartition', class: Google::Apis::HypercomputeclusterV1::UpdatePartition, decorator: Google::Apis::HypercomputeclusterV1::UpdatePartition::Representation
943
+
944
+ end
945
+ end
946
+
608
947
  class Orchestrator
609
948
  # @private
610
949
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -717,6 +1056,32 @@ module Google
717
1056
 
718
1057
  end
719
1058
  end
1059
+
1060
+ class UpdateLoginNode
1061
+ # @private
1062
+ class Representation < Google::Apis::Core::JsonRepresentation
1063
+ end
1064
+ end
1065
+
1066
+ class UpdateNodeset
1067
+ # @private
1068
+ class Representation < Google::Apis::Core::JsonRepresentation
1069
+ collection :nodesets, as: 'nodesets'
1070
+ end
1071
+ end
1072
+
1073
+ class UpdateOrchestrator
1074
+ # @private
1075
+ class Representation < Google::Apis::Core::JsonRepresentation
1076
+ end
1077
+ end
1078
+
1079
+ class UpdatePartition
1080
+ # @private
1081
+ class Representation < Google::Apis::Core::JsonRepresentation
1082
+ collection :partitions, as: 'partitions'
1083
+ end
1084
+ end
720
1085
  end
721
1086
  end
722
1087
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-hypercomputecluster_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-hypercomputecluster_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-hypercomputecluster_v1/v0.1.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-hypercomputecluster_v1/v0.2.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-hypercomputecluster_v1
62
62
  rdoc_options: []
63
63
  require_paths: