@googleapis/tpu 1.1.0 → 2.0.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.
- package/CHANGELOG.md +18 -0
- package/build/index.d.ts +5 -0
- package/build/index.js +9 -5
- package/build/index.js.map +1 -1
- package/build/v1.js +35 -34
- package/build/v1.js.map +1 -1
- package/build/v1alpha1.js +35 -34
- package/build/v1alpha1.js.map +1 -1
- package/build/v2.d.ts +2072 -0
- package/build/v2.js +678 -0
- package/build/v2.js.map +1 -0
- package/build/v2alpha1.d.ts +16 -0
- package/build/v2alpha1.js +41 -40
- package/build/v2alpha1.js.map +1 -1
- package/index.ts +10 -1
- package/package.json +5 -5
- package/v2.ts +3566 -0
- package/v2alpha1.ts +16 -0
package/v2alpha1.ts
CHANGED
|
@@ -449,6 +449,10 @@ export namespace tpu_v2alpha1 {
|
|
|
449
449
|
* The Google Cloud Platform Service Account to be used by the TPU node VMs. If None is specified, the default compute service account will be used.
|
|
450
450
|
*/
|
|
451
451
|
serviceAccount?: Schema$ServiceAccount;
|
|
452
|
+
/**
|
|
453
|
+
* Shielded Instance options.
|
|
454
|
+
*/
|
|
455
|
+
shieldedInstanceConfig?: Schema$ShieldedInstanceConfig;
|
|
452
456
|
/**
|
|
453
457
|
* Output only. The current state for the TPU Node.
|
|
454
458
|
*/
|
|
@@ -568,6 +572,15 @@ export namespace tpu_v2alpha1 {
|
|
|
568
572
|
*/
|
|
569
573
|
email?: string | null;
|
|
570
574
|
}
|
|
575
|
+
/**
|
|
576
|
+
* A set of Shielded Instance options.
|
|
577
|
+
*/
|
|
578
|
+
export interface Schema$ShieldedInstanceConfig {
|
|
579
|
+
/**
|
|
580
|
+
* Defines whether the instance has Secure Boot enabled.
|
|
581
|
+
*/
|
|
582
|
+
enableSecureBoot?: boolean | null;
|
|
583
|
+
}
|
|
571
584
|
/**
|
|
572
585
|
* Request for SimulateMaintenanceEvent.
|
|
573
586
|
*/
|
|
@@ -1482,6 +1495,7 @@ export namespace tpu_v2alpha1 {
|
|
|
1482
1495
|
* // "runtimeVersion": "my_runtimeVersion",
|
|
1483
1496
|
* // "schedulingConfig": {},
|
|
1484
1497
|
* // "serviceAccount": {},
|
|
1498
|
+
* // "shieldedInstanceConfig": {},
|
|
1485
1499
|
* // "state": "my_state",
|
|
1486
1500
|
* // "symptoms": [],
|
|
1487
1501
|
* // "tags": []
|
|
@@ -1774,6 +1788,7 @@ export namespace tpu_v2alpha1 {
|
|
|
1774
1788
|
* // "runtimeVersion": "my_runtimeVersion",
|
|
1775
1789
|
* // "schedulingConfig": {},
|
|
1776
1790
|
* // "serviceAccount": {},
|
|
1791
|
+
* // "shieldedInstanceConfig": {},
|
|
1777
1792
|
* // "state": "my_state",
|
|
1778
1793
|
* // "symptoms": [],
|
|
1779
1794
|
* // "tags": []
|
|
@@ -2205,6 +2220,7 @@ export namespace tpu_v2alpha1 {
|
|
|
2205
2220
|
* // "runtimeVersion": "my_runtimeVersion",
|
|
2206
2221
|
* // "schedulingConfig": {},
|
|
2207
2222
|
* // "serviceAccount": {},
|
|
2223
|
+
* // "shieldedInstanceConfig": {},
|
|
2208
2224
|
* // "state": "my_state",
|
|
2209
2225
|
* // "symptoms": [],
|
|
2210
2226
|
* // "tags": []
|