Skip to content

Commit eed4e2b

Browse files
committed
Generate current service sources.
1 parent 3065fd3 commit eed4e2b

283 files changed

Lines changed: 210008 additions & 24773 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

GoogleAPIClientForREST.podspec

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,11 @@ Pod::Spec.new do |s|
490490
sp.source_files = 'Sources/GeneratedServices/CloudNaturalLanguage/**/*.{h,m}'
491491
sp.public_header_files = 'Sources/GeneratedServices/CloudNaturalLanguage/Public/GoogleAPIClientForREST/*.h'
492492
end
493+
s.subspec 'CloudNumberRegistry' do |sp|
494+
sp.dependency 'GoogleAPIClientForREST/Core'
495+
sp.source_files = 'Sources/GeneratedServices/CloudNumberRegistry/**/*.{h,m}'
496+
sp.public_header_files = 'Sources/GeneratedServices/CloudNumberRegistry/Public/GoogleAPIClientForREST/*.h'
497+
end
493498
s.subspec 'CloudObservability' do |sp|
494499
sp.dependency 'GoogleAPIClientForREST/Core'
495500
sp.source_files = 'Sources/GeneratedServices/CloudObservability/**/*.{h,m}'
@@ -1275,6 +1280,11 @@ Pod::Spec.new do |s|
12751280
sp.source_files = 'Sources/GeneratedServices/Reseller/**/*.{h,m}'
12761281
sp.public_header_files = 'Sources/GeneratedServices/Reseller/Public/GoogleAPIClientForREST/*.h'
12771282
end
1283+
s.subspec 'SA360' do |sp|
1284+
sp.dependency 'GoogleAPIClientForREST/Core'
1285+
sp.source_files = 'Sources/GeneratedServices/SA360/**/*.{h,m}'
1286+
sp.public_header_files = 'Sources/GeneratedServices/SA360/Public/GoogleAPIClientForREST/*.h'
1287+
end
12781288
s.subspec 'SaaSServiceManagement' do |sp|
12791289
sp.dependency 'GoogleAPIClientForREST/Core'
12801290
sp.source_files = 'Sources/GeneratedServices/SaaSServiceManagement/**/*.{h,m}'
@@ -1515,6 +1525,11 @@ Pod::Spec.new do |s|
15151525
sp.source_files = 'Sources/GeneratedServices/Walletobjects/**/*.{h,m}'
15161526
sp.public_header_files = 'Sources/GeneratedServices/Walletobjects/Public/GoogleAPIClientForREST/*.h'
15171527
end
1528+
s.subspec 'WebContentPublisher' do |sp|
1529+
sp.dependency 'GoogleAPIClientForREST/Core'
1530+
sp.source_files = 'Sources/GeneratedServices/WebContentPublisher/**/*.{h,m}'
1531+
sp.public_header_files = 'Sources/GeneratedServices/WebContentPublisher/Public/GoogleAPIClientForREST/*.h'
1532+
end
15181533
s.subspec 'Webfonts' do |sp|
15191534
sp.dependency 'GoogleAPIClientForREST/Core'
15201535
sp.source_files = 'Sources/GeneratedServices/Webfonts/**/*.{h,m}'

Package.swift

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,10 @@ let package = Package(
361361
name: "GoogleAPIClientForREST_CloudNaturalLanguage",
362362
targets: ["GoogleAPIClientForREST_CloudNaturalLanguage"]
363363
),
364+
.library(
365+
name: "GoogleAPIClientForREST_CloudNumberRegistry",
366+
targets: ["GoogleAPIClientForREST_CloudNumberRegistry"]
367+
),
364368
.library(
365369
name: "GoogleAPIClientForREST_CloudObservability",
366370
targets: ["GoogleAPIClientForREST_CloudObservability"]
@@ -989,6 +993,10 @@ let package = Package(
989993
name: "GoogleAPIClientForREST_Reseller",
990994
targets: ["GoogleAPIClientForREST_Reseller"]
991995
),
996+
.library(
997+
name: "GoogleAPIClientForREST_SA360",
998+
targets: ["GoogleAPIClientForREST_SA360"]
999+
),
9921000
.library(
9931001
name: "GoogleAPIClientForREST_SaaSServiceManagement",
9941002
targets: ["GoogleAPIClientForREST_SaaSServiceManagement"]
@@ -1181,6 +1189,10 @@ let package = Package(
11811189
name: "GoogleAPIClientForREST_Walletobjects",
11821190
targets: ["GoogleAPIClientForREST_Walletobjects"]
11831191
),
1192+
.library(
1193+
name: "GoogleAPIClientForREST_WebContentPublisher",
1194+
targets: ["GoogleAPIClientForREST_WebContentPublisher"]
1195+
),
11841196
.library(
11851197
name: "GoogleAPIClientForREST_Webfonts",
11861198
targets: ["GoogleAPIClientForREST_Webfonts"]
@@ -1771,6 +1783,12 @@ let package = Package(
17711783
path: "Sources/GeneratedServices/CloudNaturalLanguage",
17721784
publicHeadersPath: "Public"
17731785
),
1786+
.target(
1787+
name: "GoogleAPIClientForREST_CloudNumberRegistry",
1788+
dependencies: ["GoogleAPIClientForRESTCore"],
1789+
path: "Sources/GeneratedServices/CloudNumberRegistry",
1790+
publicHeadersPath: "Public"
1791+
),
17741792
.target(
17751793
name: "GoogleAPIClientForREST_CloudObservability",
17761794
dependencies: ["GoogleAPIClientForRESTCore"],
@@ -2713,6 +2731,12 @@ let package = Package(
27132731
path: "Sources/GeneratedServices/Reseller",
27142732
publicHeadersPath: "Public"
27152733
),
2734+
.target(
2735+
name: "GoogleAPIClientForREST_SA360",
2736+
dependencies: ["GoogleAPIClientForRESTCore"],
2737+
path: "Sources/GeneratedServices/SA360",
2738+
publicHeadersPath: "Public"
2739+
),
27162740
.target(
27172741
name: "GoogleAPIClientForREST_SaaSServiceManagement",
27182742
dependencies: ["GoogleAPIClientForRESTCore"],
@@ -3001,6 +3025,12 @@ let package = Package(
30013025
path: "Sources/GeneratedServices/Walletobjects",
30023026
publicHeadersPath: "Public"
30033027
),
3028+
.target(
3029+
name: "GoogleAPIClientForREST_WebContentPublisher",
3030+
dependencies: ["GoogleAPIClientForRESTCore"],
3031+
path: "Sources/GeneratedServices/WebContentPublisher",
3032+
publicHeadersPath: "Public"
3033+
),
30043034
.target(
30053035
name: "GoogleAPIClientForREST_Webfonts",
30063036
dependencies: ["GoogleAPIClientForRESTCore"],

Sources/GeneratedServices/AIPlatformNotebooks/GTLRAIPlatformNotebooksObjects.m

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH100Mega80gb = @"NVIDIA_H100_MEGA_80GB";
2222
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaH200141gb = @"NVIDIA_H200_141GB";
2323
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaL4 = @"NVIDIA_L4";
24+
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaRtx6000 = @"NVIDIA_RTX6000";
2425
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaTeslaA100 = @"NVIDIA_TESLA_A100";
2526
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaTeslaP100 = @"NVIDIA_TESLA_P100";
2627
NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaTeslaP100Vws = @"NVIDIA_TESLA_P100_VWS";
@@ -446,7 +447,12 @@ @implementation GTLRAIPlatformNotebooks_GPUDriverConfig
446447
//
447448

448449
@implementation GTLRAIPlatformNotebooks_ImageRelease
449-
@dynamic imageName, releaseName;
450+
@dynamic descriptionProperty, imageFamily, imageName, releaseName;
451+
452+
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
453+
return @{ @"descriptionProperty" : @"description" };
454+
}
455+
450456
@end
451457

452458

@@ -937,6 +943,7 @@ @implementation GTLRAIPlatformNotebooks_UpgradeHistoryEntry
937943
//
938944

939945
@implementation GTLRAIPlatformNotebooks_UpgradeInstanceRequest
946+
@dynamic imageFamily;
940947
@end
941948

942949

Sources/GeneratedServices/AIPlatformNotebooks/Public/GoogleAPIClientForREST/GTLRAIPlatformNotebooksObjects.h

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,12 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Ty
107107
* Value: "NVIDIA_L4"
108108
*/
109109
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaL4;
110+
/**
111+
* NVIDIA RTX 6000.
112+
*
113+
* Value: "NVIDIA_RTX6000"
114+
*/
115+
FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaRtx6000;
110116
/**
111117
* Accelerator type is Nvidia Tesla A100 - 40GB.
112118
*
@@ -648,6 +654,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
648654
* "NVIDIA_H200_141GB")
649655
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaL4
650656
* Accelerator type is Nvidia Tesla L4. (Value: "NVIDIA_L4")
657+
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaRtx6000
658+
* NVIDIA RTX 6000. (Value: "NVIDIA_RTX6000")
651659
* @arg @c kGTLRAIPlatformNotebooks_AcceleratorConfig_Type_NvidiaTeslaA100
652660
* Accelerator type is Nvidia Tesla A100 - 40GB. (Value:
653661
* "NVIDIA_TESLA_A100")
@@ -1461,6 +1469,19 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
14611469
*/
14621470
@interface GTLRAIPlatformNotebooks_ImageRelease : GTLRObject
14631471

1472+
/**
1473+
* Output only. The description of the image.
1474+
*
1475+
* Remapped to 'descriptionProperty' to avoid NSObject's 'description'.
1476+
*/
1477+
@property(nonatomic, copy, nullable) NSString *descriptionProperty;
1478+
1479+
/**
1480+
* Output only. The image family of the image. (ex: workbench-instances or
1481+
* workbench-2603)
1482+
*/
1483+
@property(nonatomic, copy, nullable) NSString *imageFamily;
1484+
14641485
/**
14651486
* Output only. The name of the image of the form
14661487
* workbench-instances-vYYYYmmdd--
@@ -2435,6 +2456,17 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
24352456
* Request for upgrading a notebook instance
24362457
*/
24372458
@interface GTLRAIPlatformNotebooks_UpgradeInstanceRequest : GTLRObject
2459+
2460+
/**
2461+
* Optional. The Compute Engine image family resource name to upgrade to.
2462+
* Format: `projects/{project_id}/global/images/family/{image_family}` If
2463+
* specified, the instance will be upgraded to the latest image in the
2464+
* specified image family, allowing upgrades across image families. If not
2465+
* specified, the instance will be upgraded to the latest image in its current
2466+
* image family.
2467+
*/
2468+
@property(nonatomic, copy, nullable) NSString *imageFamily;
2469+
24382470
@end
24392471

24402472

Sources/GeneratedServices/AIPlatformNotebooks/Public/GoogleAPIClientForREST/GTLRAIPlatformNotebooksQuery.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -873,8 +873,8 @@ NS_ASSUME_NONNULL_BEGIN
873873
/**
874874
* Lists information about the supported locations for this service. This
875875
* method lists locations based on the resource scope provided in the
876-
* [ListLocationsRequest.name] field: * **Global locations**: If `name` is
877-
* empty, the method lists the public locations available to all projects. *
876+
* ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
877+
* the method lists the public locations available to all projects. *
878878
* **Project-specific locations**: If `name` follows the format
879879
* `projects/{project}`, the method lists locations visible to that specific
880880
* project. This includes public, private, or other project-specific locations
@@ -891,8 +891,8 @@ NS_ASSUME_NONNULL_BEGIN
891891
@interface GTLRAIPlatformNotebooksQuery_ProjectsLocationsList : GTLRAIPlatformNotebooksQuery
892892

893893
/**
894-
* Optional. Do not use this field. It is unsupported and is ignored unless
895-
* explicitly documented otherwise. This is primarily for internal usage.
894+
* Optional. Do not use this field unless explicitly documented otherwise. This
895+
* is primarily for internal usage.
896896
*/
897897
@property(nonatomic, strong, nullable) NSArray<NSString *> *extraLocationTypes;
898898

@@ -923,8 +923,8 @@ NS_ASSUME_NONNULL_BEGIN
923923
*
924924
* Lists information about the supported locations for this service. This
925925
* method lists locations based on the resource scope provided in the
926-
* [ListLocationsRequest.name] field: * **Global locations**: If `name` is
927-
* empty, the method lists the public locations available to all projects. *
926+
* ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
927+
* the method lists the public locations available to all projects. *
928928
* **Project-specific locations**: If `name` follows the format
929929
* `projects/{project}`, the method lists locations visible to that specific
930930
* project. This includes public, private, or other project-specific locations

Sources/GeneratedServices/AdExchangeBuyerII/GTLRAdExchangeBuyerIIObjects.m

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -685,6 +685,15 @@ @implementation GTLRAdExchangeBuyerII_ClientUserInvitation
685685
//
686686

687687
@implementation GTLRAdExchangeBuyerII_CompleteSetupRequest
688+
@dynamic externalDealIds;
689+
690+
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
691+
NSDictionary<NSString *, Class> *map = @{
692+
@"externalDealIds" : [NSString class]
693+
};
694+
return map;
695+
}
696+
688697
@end
689698

690699

Sources/GeneratedServices/AdExchangeBuyerII/Public/GoogleAPIClientForREST/GTLRAdExchangeBuyerIIObjects.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3091,6 +3091,13 @@ FOUNDATION_EXTERN NSString * const kGTLRAdExchangeBuyerII_VideoTargeting_Targete
30913091
* Request message for indicating that the proposal's setup step is complete.
30923092
*/
30933093
@interface GTLRAdExchangeBuyerII_CompleteSetupRequest : GTLRObject
3094+
3095+
/**
3096+
* The external deal ids of the deals to mark as setup completed. If empty, all
3097+
* the deals in the proposal will be marked as setup completed.
3098+
*/
3099+
@property(nonatomic, strong, nullable) NSArray<NSString *> *externalDealIds;
3100+
30943101
@end
30953102

30963103

0 commit comments

Comments
 (0)