Skip to content

Commit f2fe850

Browse files
committed
Generate current service sources.
1 parent db3166a commit f2fe850

File tree

192 files changed

+18227
-4610
lines changed

Some content is hidden

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

192 files changed

+18227
-4610
lines changed

GoogleAPIClientForREST.podspec

+8
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,10 @@ Pod::Spec.new do |s|
292292
sp.dependency 'GoogleAPIClientForREST/Core'
293293
sp.source_files = 'Source/GeneratedServices/DLP/*.{h,m}'
294294
end
295+
s.subspec 'DataFusion' do |sp|
296+
sp.dependency 'GoogleAPIClientForREST/Core'
297+
sp.source_files = 'Source/GeneratedServices/DataFusion/*.{h,m}'
298+
end
295299
s.subspec 'DataTransfer' do |sp|
296300
sp.dependency 'GoogleAPIClientForREST/Core'
297301
sp.source_files = 'Source/GeneratedServices/DataTransfer/*.{h,m}'
@@ -360,6 +364,10 @@ Pod::Spec.new do |s|
360364
sp.dependency 'GoogleAPIClientForREST/Core'
361365
sp.source_files = 'Source/GeneratedServices/FactCheckTools/*.{h,m}'
362366
end
367+
s.subspec 'FirebaseCloudMessaging' do |sp|
368+
sp.dependency 'GoogleAPIClientForREST/Core'
369+
sp.source_files = 'Source/GeneratedServices/FirebaseCloudMessaging/*.{h,m}'
370+
end
363371
s.subspec 'FirebaseDynamicLinks' do |sp|
364372
sp.dependency 'GoogleAPIClientForREST/Core'
365373
sp.source_files = 'Source/GeneratedServices/FirebaseDynamicLinks/*.{h,m}'

Source/GeneratedServices/AccessApproval/GTLRAccessApprovalObjects.h

+22
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
@class GTLRAccessApproval_ApprovalRequest;
2424
@class GTLRAccessApproval_ApproveDecision;
2525
@class GTLRAccessApproval_DismissDecision;
26+
@class GTLRAccessApproval_ResourceProperties;
2627

2728
// Generated comments include content from the discovery document; avoid them
2829
// causing warnings since clang's checks are some what arbitrary.
@@ -207,6 +208,11 @@ GTLR_EXTERN NSString * const kGTLRAccessApproval_AccessReason_Type_TypeUnspecifi
207208
*/
208209
@property(nonatomic, copy, nullable) NSString *requestedResourceName;
209210

211+
/**
212+
* Properties related to the resource represented by requested_resource_name.
213+
*/
214+
@property(nonatomic, strong, nullable) GTLRAccessApproval_ResourceProperties *requestedResourceProperties;
215+
210216
/** The time at which approval was requested. */
211217
@property(nonatomic, strong, nullable) GTLRDateTime *requestTime;
212218

@@ -282,6 +288,22 @@ GTLR_EXTERN NSString * const kGTLRAccessApproval_AccessReason_Type_TypeUnspecifi
282288
@end
283289

284290

291+
/**
292+
* The properties associated with the resource of the request.
293+
*/
294+
@interface GTLRAccessApproval_ResourceProperties : GTLRObject
295+
296+
/**
297+
* Whether an approval will exclude the descendants of the resource being
298+
* requested.
299+
*
300+
* Uses NSNumber of boolValue.
301+
*/
302+
@property(nonatomic, strong, nullable) NSNumber *excludesDescendants;
303+
304+
@end
305+
306+
285307
/**
286308
* Settings on a Project/Folder/Organization related to Access Approval.
287309
*/

Source/GeneratedServices/AccessApproval/GTLRAccessApprovalObjects.m

+12-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ @implementation GTLRAccessApproval_AccessReason
4646

4747
@implementation GTLRAccessApproval_ApprovalRequest
4848
@dynamic approve, dismiss, name, requestedExpiration, requestedLocations,
49-
requestedReason, requestedResourceName, requestTime;
49+
requestedReason, requestedResourceName, requestedResourceProperties,
50+
requestTime;
5051
@end
5152

5253

@@ -111,6 +112,16 @@ + (NSString *)collectionItemsKey {
111112
@end
112113

113114

115+
// ----------------------------------------------------------------------------
116+
//
117+
// GTLRAccessApproval_ResourceProperties
118+
//
119+
120+
@implementation GTLRAccessApproval_ResourceProperties
121+
@dynamic excludesDescendants;
122+
@end
123+
124+
114125
// ----------------------------------------------------------------------------
115126
//
116127
// GTLRAccessApproval_Settings

Source/GeneratedServices/AccessContextManager/GTLRAccessContextManagerObjects.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ GTLR_EXTERN NSString * const kGTLRAccessContextManager_ServicePerimeter_Perimete
503503
/**
504504
* The server-assigned name, which is only unique within the same service that
505505
* originally returns it. If you use the default HTTP mapping, the
506-
* `name` should have the format of `operations/some/unique/name`.
506+
* `name` should be a resource name ending with `operations/{unique_id}`.
507507
*/
508508
@property(nonatomic, copy, nullable) NSString *name;
509509

0 commit comments

Comments
 (0)