Skip to content

Commit 72daca5

Browse files
committed
Generate current service sources.
1 parent 435757f commit 72daca5

File tree

189 files changed

+12456
-2532
lines changed

Some content is hidden

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

189 files changed

+12456
-2532
lines changed

GoogleAPIClientForREST.podspec

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,11 @@ Pod::Spec.new do |s|
621621
sp.source_files = 'Sources/GeneratedServices/Datapipelines/**/*.{h,m}'
622622
sp.public_header_files = 'Sources/GeneratedServices/Datapipelines/Public/GoogleAPIClientForREST/*.h'
623623
end
624+
s.subspec 'DataPortability' do |sp|
625+
sp.dependency 'GoogleAPIClientForREST/Core'
626+
sp.source_files = 'Sources/GeneratedServices/DataPortability/**/*.{h,m}'
627+
sp.public_header_files = 'Sources/GeneratedServices/DataPortability/Public/GoogleAPIClientForREST/*.h'
628+
end
624629
s.subspec 'Dataproc' do |sp|
625630
sp.dependency 'GoogleAPIClientForREST/Core'
626631
sp.source_files = 'Sources/GeneratedServices/Dataproc/**/*.{h,m}'
@@ -1406,6 +1411,11 @@ Pod::Spec.new do |s|
14061411
sp.source_files = 'Sources/GeneratedServices/WorkloadManager/**/*.{h,m}'
14071412
sp.public_header_files = 'Sources/GeneratedServices/WorkloadManager/Public/GoogleAPIClientForREST/*.h'
14081413
end
1414+
s.subspec 'WorkspaceEvents' do |sp|
1415+
sp.dependency 'GoogleAPIClientForREST/Core'
1416+
sp.source_files = 'Sources/GeneratedServices/WorkspaceEvents/**/*.{h,m}'
1417+
sp.public_header_files = 'Sources/GeneratedServices/WorkspaceEvents/Public/GoogleAPIClientForREST/*.h'
1418+
end
14091419
s.subspec 'YouTube' do |sp|
14101420
sp.dependency 'GoogleAPIClientForREST/Core'
14111421
sp.source_files = 'Sources/GeneratedServices/YouTube/**/*.{h,m}'

Package.swift

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,10 @@ let package = Package(
469469
name: "GoogleAPIClientForREST_Datapipelines",
470470
targets: ["GoogleAPIClientForREST_Datapipelines"]
471471
),
472+
.library(
473+
name: "GoogleAPIClientForREST_DataPortability",
474+
targets: ["GoogleAPIClientForREST_DataPortability"]
475+
),
472476
.library(
473477
name: "GoogleAPIClientForREST_Dataproc",
474478
targets: ["GoogleAPIClientForREST_Dataproc"]
@@ -1097,6 +1101,10 @@ let package = Package(
10971101
name: "GoogleAPIClientForREST_WorkloadManager",
10981102
targets: ["GoogleAPIClientForREST_WorkloadManager"]
10991103
),
1104+
.library(
1105+
name: "GoogleAPIClientForREST_WorkspaceEvents",
1106+
targets: ["GoogleAPIClientForREST_WorkspaceEvents"]
1107+
),
11001108
.library(
11011109
name: "GoogleAPIClientForREST_YouTube",
11021110
targets: ["GoogleAPIClientForREST_YouTube"]
@@ -1821,6 +1829,12 @@ let package = Package(
18211829
path: "Sources/GeneratedServices/Datapipelines",
18221830
publicHeadersPath: "Public"
18231831
),
1832+
.target(
1833+
name: "GoogleAPIClientForREST_DataPortability",
1834+
dependencies: ["GoogleAPIClientForRESTCore"],
1835+
path: "Sources/GeneratedServices/DataPortability",
1836+
publicHeadersPath: "Public"
1837+
),
18241838
.target(
18251839
name: "GoogleAPIClientForREST_Dataproc",
18261840
dependencies: ["GoogleAPIClientForRESTCore"],
@@ -2763,6 +2777,12 @@ let package = Package(
27632777
path: "Sources/GeneratedServices/WorkloadManager",
27642778
publicHeadersPath: "Public"
27652779
),
2780+
.target(
2781+
name: "GoogleAPIClientForREST_WorkspaceEvents",
2782+
dependencies: ["GoogleAPIClientForRESTCore"],
2783+
path: "Sources/GeneratedServices/WorkspaceEvents",
2784+
publicHeadersPath: "Public"
2785+
),
27662786
.target(
27672787
name: "GoogleAPIClientForREST_YouTube",
27682788
dependencies: ["GoogleAPIClientForRESTCore"],

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,11 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
594594

595595
/**
596596
* Role that is assigned to the list of `members`, or principals. For example,
597-
* `roles/viewer`, `roles/editor`, or `roles/owner`.
597+
* `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
598+
* roles and permissions, see the [IAM
599+
* documentation](https://cloud.google.com/iam/docs/roles-overview). For a list
600+
* of the available pre-defined roles, see
601+
* [here](https://cloud.google.com/iam/docs/understanding-roles).
598602
*/
599603
@property(nonatomic, copy, nullable) NSString *role;
600604

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,11 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIGateway_Gateway_State_Updating;
576576

577577
/**
578578
* Role that is assigned to the list of `members`, or principals. For example,
579-
* `roles/viewer`, `roles/editor`, or `roles/owner`.
579+
* `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
580+
* roles and permissions, see the [IAM
581+
* documentation](https://cloud.google.com/iam/docs/roles-overview). For a list
582+
* of the available pre-defined roles, see
583+
* [here](https://cloud.google.com/iam/docs/understanding-roles).
580584
*/
581585
@property(nonatomic, copy, nullable) NSString *role;
582586

Sources/GeneratedServices/AccessContextManager/Public/GoogleAPIClientForREST/GTLRAccessContextManagerObjects.h

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,11 @@ FOUNDATION_EXTERN NSString * const kGTLRAccessContextManager_SupportedService_Su
798798

799799
/**
800800
* Role that is assigned to the list of `members`, or principals. For example,
801-
* `roles/viewer`, `roles/editor`, or `roles/owner`.
801+
* `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
802+
* roles and permissions, see the [IAM
803+
* documentation](https://cloud.google.com/iam/docs/roles-overview). For a list
804+
* of the available pre-defined roles, see
805+
* [here](https://cloud.google.com/iam/docs/understanding-roles).
802806
*/
803807
@property(nonatomic, copy, nullable) NSString *role;
804808

@@ -983,9 +987,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAccessContextManager_SupportedService_Su
983987
@interface GTLRAccessContextManager_EgressFrom : GTLRObject
984988

985989
/**
986-
* A list of identities that are allowed access through this [EgressPolicy].
987-
* Should be in the format of email address. The email address should represent
988-
* individual user or service account only.
990+
* A list of identities that are allowed access through this [EgressPolicy], in
991+
* the format of `user:{email_id}` or `serviceAccount:{email_id}`.
989992
*/
990993
@property(nonatomic, strong, nullable) NSArray *identities;
991994

@@ -1291,9 +1294,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAccessContextManager_SupportedService_Su
12911294
@interface GTLRAccessContextManager_IngressFrom : GTLRObject
12921295

12931296
/**
1294-
* A list of identities that are allowed access through this ingress policy.
1295-
* Should be in the format of email address. The email address should represent
1296-
* individual user or service account only.
1297+
* A list of identities that are allowed access through this ingress policy, in
1298+
* the format of `user:{email_id}` or `serviceAccount:{email_id}`.
12971299
*/
12981300
@property(nonatomic, strong, nullable) NSArray *identities;
12991301

0 commit comments

Comments
 (0)