Skip to content

Commit 08c9d93

Browse files
committed
Generate current service sources.
1 parent 295c7ca commit 08c9d93

File tree

443 files changed

+132757
-69490
lines changed

Some content is hidden

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

443 files changed

+132757
-69490
lines changed

GoogleAPIClientForREST.podspec

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,11 @@ Pod::Spec.new do |s|
370370
sp.source_files = 'Sources/GeneratedServices/ChromeUXReport/**/*.{h,m}'
371371
sp.public_header_files = 'Sources/GeneratedServices/ChromeUXReport/Public/GoogleAPIClientForREST/*.h'
372372
end
373+
s.subspec 'Chromewebstore' do |sp|
374+
sp.dependency 'GoogleAPIClientForREST/Core'
375+
sp.source_files = 'Sources/GeneratedServices/Chromewebstore/**/*.{h,m}'
376+
sp.public_header_files = 'Sources/GeneratedServices/Chromewebstore/Public/GoogleAPIClientForREST/*.h'
377+
end
373378
s.subspec 'CivicInfo' do |sp|
374379
sp.dependency 'GoogleAPIClientForREST/Core'
375380
sp.source_files = 'Sources/GeneratedServices/CivicInfo/**/*.{h,m}'
@@ -680,6 +685,11 @@ Pod::Spec.new do |s|
680685
sp.source_files = 'Sources/GeneratedServices/Datalineage/**/*.{h,m}'
681686
sp.public_header_files = 'Sources/GeneratedServices/Datalineage/Public/GoogleAPIClientForREST/*.h'
682687
end
688+
s.subspec 'DataManager' do |sp|
689+
sp.dependency 'GoogleAPIClientForREST/Core'
690+
sp.source_files = 'Sources/GeneratedServices/DataManager/**/*.{h,m}'
691+
sp.public_header_files = 'Sources/GeneratedServices/DataManager/Public/GoogleAPIClientForREST/*.h'
692+
end
683693
s.subspec 'Datapipelines' do |sp|
684694
sp.dependency 'GoogleAPIClientForREST/Core'
685695
sp.source_files = 'Sources/GeneratedServices/Datapipelines/**/*.{h,m}'

Package.swift

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,10 @@ let package = Package(
265265
name: "GoogleAPIClientForREST_ChromeUXReport",
266266
targets: ["GoogleAPIClientForREST_ChromeUXReport"]
267267
),
268+
.library(
269+
name: "GoogleAPIClientForREST_Chromewebstore",
270+
targets: ["GoogleAPIClientForREST_Chromewebstore"]
271+
),
268272
.library(
269273
name: "GoogleAPIClientForREST_CivicInfo",
270274
targets: ["GoogleAPIClientForREST_CivicInfo"]
@@ -513,6 +517,10 @@ let package = Package(
513517
name: "GoogleAPIClientForREST_Datalineage",
514518
targets: ["GoogleAPIClientForREST_Datalineage"]
515519
),
520+
.library(
521+
name: "GoogleAPIClientForREST_DataManager",
522+
targets: ["GoogleAPIClientForREST_DataManager"]
523+
),
516524
.library(
517525
name: "GoogleAPIClientForREST_Datapipelines",
518526
targets: ["GoogleAPIClientForREST_Datapipelines"]
@@ -1639,6 +1647,12 @@ let package = Package(
16391647
path: "Sources/GeneratedServices/ChromeUXReport",
16401648
publicHeadersPath: "Public"
16411649
),
1650+
.target(
1651+
name: "GoogleAPIClientForREST_Chromewebstore",
1652+
dependencies: ["GoogleAPIClientForRESTCore"],
1653+
path: "Sources/GeneratedServices/Chromewebstore",
1654+
publicHeadersPath: "Public"
1655+
),
16421656
.target(
16431657
name: "GoogleAPIClientForREST_CivicInfo",
16441658
dependencies: ["GoogleAPIClientForRESTCore"],
@@ -2011,6 +2025,12 @@ let package = Package(
20112025
path: "Sources/GeneratedServices/Datalineage",
20122026
publicHeadersPath: "Public"
20132027
),
2028+
.target(
2029+
name: "GoogleAPIClientForREST_DataManager",
2030+
dependencies: ["GoogleAPIClientForRESTCore"],
2031+
path: "Sources/GeneratedServices/DataManager",
2032+
publicHeadersPath: "Public"
2033+
),
20142034
.target(
20152035
name: "GoogleAPIClientForREST_Datapipelines",
20162036
dependencies: ["GoogleAPIClientForRESTCore"],

Sources/GeneratedServices/AIPlatformNotebooks/GTLRAIPlatformNotebooksObjects.m

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,15 @@ @implementation GTLRAIPlatformNotebooks_ContainerImage
257257
//
258258

259259
@implementation GTLRAIPlatformNotebooks_DataDisk
260-
@dynamic diskEncryption, diskSizeGb, diskType, kmsKey;
260+
@dynamic diskEncryption, diskSizeGb, diskType, kmsKey, resourcePolicies;
261+
262+
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
263+
NSDictionary<NSString *, Class> *map = @{
264+
@"resourcePolicies" : [NSString class]
265+
};
266+
return map;
267+
}
268+
261269
@end
262270

263271

@@ -348,7 +356,7 @@ @implementation GTLRAIPlatformNotebooks_Expr
348356
@implementation GTLRAIPlatformNotebooks_GceSetup
349357
@dynamic acceleratorConfigs, bootDisk, confidentialInstanceConfig,
350358
containerImage, dataDisks, disablePublicIp, enableIpForwarding,
351-
gpuDriverConfig, machineType, metadata, minCpuPlatform,
359+
gpuDriverConfig, instanceId, machineType, metadata, minCpuPlatform,
352360
networkInterfaces, reservationAffinity, serviceAccounts,
353361
shieldedInstanceConfig, tags, vmImage;
354362

@@ -536,11 +544,12 @@ + (NSString *)collectionItemsKey {
536544
//
537545

538546
@implementation GTLRAIPlatformNotebooks_ListOperationsResponse
539-
@dynamic nextPageToken, operations;
547+
@dynamic nextPageToken, operations, unreachable;
540548

541549
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
542550
NSDictionary<NSString *, Class> *map = @{
543-
@"operations" : [GTLRAIPlatformNotebooks_Operation class]
551+
@"operations" : [GTLRAIPlatformNotebooks_Operation class],
552+
@"unreachable" : [NSString class]
544553
};
545554
return map;
546555
}

Sources/GeneratedServices/AIPlatformNotebooks/GTLRAIPlatformNotebooksQuery.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ + (instancetype)queryWithName:(NSString *)name {
678678

679679
@implementation GTLRAIPlatformNotebooksQuery_ProjectsLocationsOperationsList
680680

681-
@dynamic filter, name, pageSize, pageToken;
681+
@dynamic filter, name, pageSize, pageToken, returnPartialSuccess;
682682

683683
+ (instancetype)queryWithName:(NSString *)name {
684684
NSArray *pathParams = @[ @"name" ];

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,6 +956,9 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
956956
*/
957957
@property(nonatomic, copy, nullable) NSString *kmsKey;
958958

959+
/** Optional. The resource policies to apply to the data disk. */
960+
@property(nonatomic, strong, nullable) NSArray<NSString *> *resourcePolicies;
961+
959962
@end
960963

961964

@@ -1198,6 +1201,9 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
11981201
/** Optional. Configuration for GPU drivers. */
11991202
@property(nonatomic, strong, nullable) GTLRAIPlatformNotebooks_GPUDriverConfig *gpuDriverConfig;
12001203

1204+
/** Output only. The unique ID of the Compute Engine instance resource. */
1205+
@property(nonatomic, copy, nullable) NSString *instanceId;
1206+
12011207
/**
12021208
* Optional. The machine type of the VM instance.
12031209
* https://cloud.google.com/compute/docs/machine-resource
@@ -1450,7 +1456,7 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
14501456
@property(nonatomic, strong, nullable) GTLRAIPlatformNotebooks_Instance_Labels *labels;
14511457

14521458
/**
1453-
* Output only. The name of this notebook instance. Format:
1459+
* Output only. Identifier. The name of this notebook instance. Format:
14541460
* `projects/{project_id}/locations/{location}/instances/{instance_id}`
14551461
*/
14561462
@property(nonatomic, copy, nullable) NSString *name;
@@ -1626,6 +1632,13 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
16261632
*/
16271633
@property(nonatomic, strong, nullable) NSArray<GTLRAIPlatformNotebooks_Operation *> *operations;
16281634

1635+
/**
1636+
* Unordered list. Unreachable resources. Populated when the request sets
1637+
* `ListOperationsRequest.return_partial_success` and reads across collections
1638+
* e.g. when attempting to list all resources across all supported locations.
1639+
*/
1640+
@property(nonatomic, strong, nullable) NSArray<NSString *> *unreachable;
1641+
16291642
@end
16301643

16311644

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

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ NS_ASSUME_NONNULL_BEGIN
426426
@interface GTLRAIPlatformNotebooksQuery_ProjectsLocationsInstancesPatch : GTLRAIPlatformNotebooksQuery
427427

428428
/**
429-
* Output only. The name of this notebook instance. Format:
429+
* Output only. Identifier. The name of this notebook instance. Format:
430430
* `projects/{project_id}/locations/{location}/instances/{instance_id}`
431431
*/
432432
@property(nonatomic, copy, nullable) NSString *name;
@@ -465,7 +465,8 @@ NS_ASSUME_NONNULL_BEGIN
465465
*
466466
* @param object The @c GTLRAIPlatformNotebooks_Instance to include in the
467467
* query.
468-
* @param name Output only. The name of this notebook instance. Format:
468+
* @param name Output only. Identifier. The name of this notebook instance.
469+
* Format:
469470
* `projects/{project_id}/locations/{location}/instances/{instance_id}`
470471
*
471472
* @return GTLRAIPlatformNotebooksQuery_ProjectsLocationsInstancesPatch
@@ -873,8 +874,8 @@ NS_ASSUME_NONNULL_BEGIN
873874
@interface GTLRAIPlatformNotebooksQuery_ProjectsLocationsList : GTLRAIPlatformNotebooksQuery
874875

875876
/**
876-
* Optional. A list of extra location types that should be used as conditions
877-
* for controlling the visibility of the locations.
877+
* Optional. Unless explicitly documented otherwise, don't use this unsupported
878+
* field which is primarily intended for internal usage.
878879
*/
879880
@property(nonatomic, strong, nullable) NSArray<NSString *> *extraLocationTypes;
880881

@@ -1047,6 +1048,17 @@ NS_ASSUME_NONNULL_BEGIN
10471048
/** The standard list page token. */
10481049
@property(nonatomic, copy, nullable) NSString *pageToken;
10491050

1051+
/**
1052+
* When set to `true`, operations that are reachable are returned as normal,
1053+
* and those that are unreachable are returned in the
1054+
* [ListOperationsResponse.unreachable] field. This can only be `true` when
1055+
* reading across collections e.g. when `parent` is set to
1056+
* `"projects/example/locations/-"`. This field is not by default supported and
1057+
* will result in an `UNIMPLEMENTED` error if set unless explicitly documented
1058+
* otherwise in service or product specific documentation.
1059+
*/
1060+
@property(nonatomic, assign) BOOL returnPartialSuccess;
1061+
10501062
/**
10511063
* Fetches a @c GTLRAIPlatformNotebooks_ListOperationsResponse.
10521064
*

Sources/GeneratedServices/APIGateway/GTLRAPIGatewayObjects.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,11 +350,12 @@ + (NSString *)collectionItemsKey {
350350
//
351351

352352
@implementation GTLRAPIGateway_ListOperationsResponse
353-
@dynamic nextPageToken, operations;
353+
@dynamic nextPageToken, operations, unreachable;
354354

355355
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
356356
NSDictionary<NSString *, Class> *map = @{
357-
@"operations" : [GTLRAPIGateway_Operation class]
357+
@"operations" : [GTLRAPIGateway_Operation class],
358+
@"unreachable" : [NSString class]
358359
};
359360
return map;
360361
}

Sources/GeneratedServices/APIGateway/GTLRAPIGatewayQuery.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ + (instancetype)queryWithName:(NSString *)name {
702702

703703
@implementation GTLRAPIGatewayQuery_ProjectsLocationsOperationsList
704704

705-
@dynamic filter, name, pageSize, pageToken;
705+
@dynamic filter, name, pageSize, pageToken, returnPartialSuccess;
706706

707707
+ (instancetype)queryWithName:(NSString *)name {
708708
NSArray *pathParams = @[ @"name" ];

Sources/GeneratedServices/APIGateway/Public/GoogleAPIClientForREST/GTLRAPIGatewayObjects.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,13 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIGateway_Gateway_State_Updating;
856856
*/
857857
@property(nonatomic, strong, nullable) NSArray<GTLRAPIGateway_Operation *> *operations;
858858

859+
/**
860+
* Unordered list. Unreachable resources. Populated when the request sets
861+
* `ListOperationsRequest.return_partial_success` and reads across collections
862+
* e.g. when attempting to list all resources across all supported locations.
863+
*/
864+
@property(nonatomic, strong, nullable) NSArray<NSString *> *unreachable;
865+
859866
@end
860867

861868

Sources/GeneratedServices/APIGateway/Public/GoogleAPIClientForREST/GTLRAPIGatewayQuery.h

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,8 +1065,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIGatewayViewFull;
10651065
@interface GTLRAPIGatewayQuery_ProjectsLocationsList : GTLRAPIGatewayQuery
10661066

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

@@ -1239,6 +1239,17 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIGatewayViewFull;
12391239
/** The standard list page token. */
12401240
@property(nonatomic, copy, nullable) NSString *pageToken;
12411241

1242+
/**
1243+
* When set to `true`, operations that are reachable are returned as normal,
1244+
* and those that are unreachable are returned in the
1245+
* [ListOperationsResponse.unreachable] field. This can only be `true` when
1246+
* reading across collections e.g. when `parent` is set to
1247+
* `"projects/example/locations/-"`. This field is not by default supported and
1248+
* will result in an `UNIMPLEMENTED` error if set unless explicitly documented
1249+
* otherwise in service or product specific documentation.
1250+
*/
1251+
@property(nonatomic, assign) BOOL returnPartialSuccess;
1252+
12421253
/**
12431254
* Fetches a @c GTLRAPIGateway_ListOperationsResponse.
12441255
*

0 commit comments

Comments
 (0)