Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
// GTLRAIPlatformNotebooks_AcceleratorConfig.type
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_AcceleratorTypeUnspecified = @"ACCELERATOR_TYPE_UNSPECIFIED";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaA10080gb = @"NVIDIA_A100_80GB";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaB200 = @"NVIDIA_B200";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH10080gb = @"NVIDIA_H100_80GB";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH100Mega80gb = @"NVIDIA_H100_MEGA_80GB";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH200141gb = @"NVIDIA_H200_141GB";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaL4 = @"NVIDIA_L4";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaTeslaA100 = @"NVIDIA_TESLA_A100";
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaTeslaP100 = @"NVIDIA_TESLA_P100";
Expand All @@ -35,6 +37,7 @@

// GTLRAIPlatformNotebooks_BootDisk.diskType
NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskType_DiskTypeUnspecified = @"DISK_TYPE_UNSPECIFIED";
NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskType_HyperdiskBalanced = @"HYPERDISK_BALANCED";
NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskType_PdBalanced = @"PD_BALANCED";
NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskType_PdExtreme = @"PD_EXTREME";
NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskType_PdSsd = @"PD_SSD";
Expand All @@ -51,6 +54,7 @@

// GTLRAIPlatformNotebooks_DataDisk.diskType
NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskType_DiskTypeUnspecified = @"DISK_TYPE_UNSPECIFIED";
NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskType_HyperdiskBalanced = @"HYPERDISK_BALANCED";
NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskType_PdBalanced = @"PD_BALANCED";
NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskType_PdExtreme = @"PD_EXTREME";
NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskType_PdSsd = @"PD_SSD";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Ty
* Value: "NVIDIA_A100_80GB"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaA10080gb;
/**
* Accelerator type is NVIDIA B200.
*
* Value: "NVIDIA_B200"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaB200;
/**
* Accelerator type is Nvidia Tesla H100 - 80GB.
*
Expand All @@ -89,6 +95,12 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Ty
* Value: "NVIDIA_H100_MEGA_80GB"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH100Mega80gb;
/**
* Accelerator type is Nvidia Tesla H200 - 141GB.
*
* Value: "NVIDIA_H200_141GB"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH200141gb;
/**
* Accelerator type is Nvidia Tesla L4.
*
Expand Down Expand Up @@ -175,6 +187,12 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskEncrypt
* Value: "DISK_TYPE_UNSPECIFIED"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskType_DiskTypeUnspecified;
/**
* Hyperdisk Balanced persistent disk type.
*
* Value: "HYPERDISK_BALANCED"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_BootDisk_DiskType_HyperdiskBalanced;
/**
* Balanced persistent disk type.
*
Expand Down Expand Up @@ -247,6 +265,12 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskEncrypt
* Value: "DISK_TYPE_UNSPECIFIED"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskType_DiskTypeUnspecified;
/**
* Hyperdisk Balanced persistent disk type.
*
* Value: "HYPERDISK_BALANCED"
*/
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_DataDisk_DiskType_HyperdiskBalanced;
/**
* Balanced persistent disk type.
*
Expand Down Expand Up @@ -553,12 +577,17 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaA10080gb
* Accelerator type is Nvidia Tesla A100 - 80GB. (Value:
* "NVIDIA_A100_80GB")
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaB200
* Accelerator type is NVIDIA B200. (Value: "NVIDIA_B200")
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH10080gb
* Accelerator type is Nvidia Tesla H100 - 80GB. (Value:
* "NVIDIA_H100_80GB")
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH100Mega80gb
* Accelerator type is Nvidia Tesla H100 - MEGA 80GB. (Value:
* "NVIDIA_H100_MEGA_80GB")
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH200141gb
* Accelerator type is Nvidia Tesla H200 - 141GB. (Value:
* "NVIDIA_H200_141GB")
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaL4
* Accelerator type is Nvidia Tesla L4. (Value: "NVIDIA_L4")
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaTeslaA100
Expand Down Expand Up @@ -725,6 +754,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
* Likely values:
* @arg @c kGTLRAIPlatformNotebooks_BootDisk_DiskType_DiskTypeUnspecified
* Disk type not set. (Value: "DISK_TYPE_UNSPECIFIED")
* @arg @c kGTLRAIPlatformNotebooks_BootDisk_DiskType_HyperdiskBalanced
* Hyperdisk Balanced persistent disk type. (Value: "HYPERDISK_BALANCED")
* @arg @c kGTLRAIPlatformNotebooks_BootDisk_DiskType_PdBalanced Balanced
* persistent disk type. (Value: "PD_BALANCED")
* @arg @c kGTLRAIPlatformNotebooks_BootDisk_DiskType_PdExtreme Extreme
Expand Down Expand Up @@ -937,6 +968,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
* Likely values:
* @arg @c kGTLRAIPlatformNotebooks_DataDisk_DiskType_DiskTypeUnspecified
* Disk type not set. (Value: "DISK_TYPE_UNSPECIFIED")
* @arg @c kGTLRAIPlatformNotebooks_DataDisk_DiskType_HyperdiskBalanced
* Hyperdisk Balanced persistent disk type. (Value: "HYPERDISK_BALANCED")
* @arg @c kGTLRAIPlatformNotebooks_DataDisk_DiskType_PdBalanced Balanced
* persistent disk type. (Value: "PD_BALANCED")
* @arg @c kGTLRAIPlatformNotebooks_DataDisk_DiskType_PdExtreme Extreme
Expand Down Expand Up @@ -1634,8 +1667,9 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_

/**
* Unordered list. Unreachable resources. Populated when the request sets
* `ListOperationsRequest.return_partial_success` and reads across collections
* e.g. when attempting to list all resources across all supported locations.
* `ListOperationsRequest.return_partial_success` and reads across collections.
* For example, when attempting to list all resources across all supported
* locations.
*/
@property(nonatomic, strong, nullable) NSArray<NSString *> *unreachable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -874,8 +874,8 @@ NS_ASSUME_NONNULL_BEGIN
@interface GTLRAIPlatformNotebooksQuery_ProjectsLocationsList : GTLRAIPlatformNotebooksQuery

/**
* Optional. Unless explicitly documented otherwise, don't use this unsupported
* field which is primarily intended for internal usage.
* Optional. Do not use this field. It is unsupported and is ignored unless
* explicitly documented otherwise. This is primarily for internal usage.
*/
@property(nonatomic, strong, nullable) NSArray<NSString *> *extraLocationTypes;

Expand Down Expand Up @@ -1051,9 +1051,9 @@ NS_ASSUME_NONNULL_BEGIN
/**
* When set to `true`, operations that are reachable are returned as normal,
* and those that are unreachable are returned in the
* [ListOperationsResponse.unreachable] field. This can only be `true` when
* reading across collections e.g. when `parent` is set to
* `"projects/example/locations/-"`. This field is not by default supported and
* ListOperationsResponse.unreachable field. This can only be `true` when
* reading across collections. For example, when `parent` is set to
* `"projects/example/locations/-"`. This field is not supported by default and
* will result in an `UNIMPLEMENTED` error if set unless explicitly documented
* otherwise in service or product specific documentation.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1017,8 +1017,9 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIManagement_TagAction_Action_Remove;

/**
* Unordered list. Unreachable resources. Populated when the request sets
* `ListOperationsRequest.return_partial_success` and reads across collections
* e.g. when attempting to list all resources across all supported locations.
* `ListOperationsRequest.return_partial_success` and reads across collections.
* For example, when attempting to list all resources across all supported
* locations.
*/
@property(nonatomic, strong, nullable) NSArray<NSString *> *unreachable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -936,9 +936,9 @@ NS_ASSUME_NONNULL_BEGIN
/**
* When set to `true`, operations that are reachable are returned as normal,
* and those that are unreachable are returned in the
* [ListOperationsResponse.unreachable] field. This can only be `true` when
* reading across collections e.g. when `parent` is set to
* `"projects/example/locations/-"`. This field is not by default supported and
* ListOperationsResponse.unreachable field. This can only be `true` when
* reading across collections. For example, when `parent` is set to
* `"projects/example/locations/-"`. This field is not supported by default and
* will result in an `UNIMPLEMENTED` error if set unless explicitly documented
* otherwise in service or product specific documentation.
*/
Expand Down
Loading