Skip to content

Commit

Permalink
Update services.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvl committed Sep 26, 2024
1 parent 7017bbd commit 1e895b3
Show file tree
Hide file tree
Showing 214 changed files with 23,024 additions and 11,012 deletions.
5 changes: 5 additions & 0 deletions GoogleAPIClientForREST.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -1099,6 +1099,11 @@ Pod::Spec.new do |s|
sp.source_files = 'Sources/GeneratedServices/OnDemandScanning/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/OnDemandScanning/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'OracleDatabase' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/OracleDatabase/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/OracleDatabase/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'OrgPolicyAPI' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/OrgPolicyAPI/**/*.{h,m}'
Expand Down
10 changes: 10 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,10 @@ let package = Package(
name: "GoogleAPIClientForREST_OnDemandScanning",
targets: ["GoogleAPIClientForREST_OnDemandScanning"]
),
.library(
name: "GoogleAPIClientForREST_OracleDatabase",
targets: ["GoogleAPIClientForREST_OracleDatabase"]
),
.library(
name: "GoogleAPIClientForREST_OrgPolicyAPI",
targets: ["GoogleAPIClientForREST_OrgPolicyAPI"]
Expand Down Expand Up @@ -2451,6 +2455,12 @@ let package = Package(
path: "Sources/GeneratedServices/OnDemandScanning",
publicHeadersPath: "Public"
),
.target(
name: "GoogleAPIClientForREST_OracleDatabase",
dependencies: ["GoogleAPIClientForRESTCore"],
path: "Sources/GeneratedServices/OracleDatabase",
publicHeadersPath: "Public"
),
.target(
name: "GoogleAPIClientForREST_OrgPolicyAPI",
dependencies: ["GoogleAPIClientForRESTCore"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1083,8 +1083,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAIPlatformNotebooks_UpgradeHistoryEntry_
@property(nonatomic, strong, nullable) GTLRAIPlatformNotebooks_ShieldedInstanceConfig *shieldedInstanceConfig;

/**
* Optional. The Compute Engine tags to add to runtime (see [Tagging
* instances](https://cloud.google.com/compute/docs/label-or-tag-resources#tags)).
* Optional. The Compute Engine network tags to add to runtime (see [Add
* network tags](https://cloud.google.com/vpc/docs/add-remove-network-tags)).
*/
@property(nonatomic, strong, nullable) NSArray<NSString *> *tags;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@
NSString * const kGTLRAccessContextManager_OsConstraint_OsType_Ios = @"IOS";
NSString * const kGTLRAccessContextManager_OsConstraint_OsType_OsUnspecified = @"OS_UNSPECIFIED";

// GTLRAccessContextManager_ReauthSettings.reauthMethod
NSString * const kGTLRAccessContextManager_ReauthSettings_ReauthMethod_Login = @"LOGIN";
NSString * const kGTLRAccessContextManager_ReauthSettings_ReauthMethod_Password = @"PASSWORD";
NSString * const kGTLRAccessContextManager_ReauthSettings_ReauthMethod_ReauthMethodUnspecified = @"REAUTH_METHOD_UNSPECIFIED";
NSString * const kGTLRAccessContextManager_ReauthSettings_ReauthMethod_SecurityKey = @"SECURITY_KEY";

// GTLRAccessContextManager_ServicePerimeter.perimeterType
NSString * const kGTLRAccessContextManager_ServicePerimeter_PerimeterType_PerimeterTypeBridge = @"PERIMETER_TYPE_BRIDGE";
NSString * const kGTLRAccessContextManager_ServicePerimeter_PerimeterType_PerimeterTypeRegular = @"PERIMETER_TYPE_REGULAR";
Expand Down Expand Up @@ -141,6 +147,34 @@ @implementation GTLRAccessContextManager_AccessPolicy
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_AccessScope
//

@implementation GTLRAccessContextManager_AccessScope
@dynamic clientScope;
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_AccessSettings
//

@implementation GTLRAccessContextManager_AccessSettings
@dynamic accessLevels, reauthSettings;

+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"accessLevels" : [NSString class]
};
return map;
}

@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_ApiOperation
Expand Down Expand Up @@ -268,6 +302,16 @@ @implementation GTLRAccessContextManager_CancelOperationRequest
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_ClientScope
//

@implementation GTLRAccessContextManager_ClientScope
@dynamic restrictedClientApplication;
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_CommitServicePerimetersRequest
Expand Down Expand Up @@ -445,14 +489,15 @@ @implementation GTLRAccessContextManager_Expr
//

@implementation GTLRAccessContextManager_GcpUserAccessBinding
@dynamic accessLevels, dryRunAccessLevels, groupKey, name,
restrictedClientApplications;
@dynamic accessLevels, dryRunAccessLevels, groupKey, name, reauthSettings,
restrictedClientApplications, scopedAccessSettings;

+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"accessLevels" : [NSString class],
@"dryRunAccessLevels" : [NSString class],
@"restrictedClientApplications" : [GTLRAccessContextManager_Application class]
@"restrictedClientApplications" : [GTLRAccessContextManager_Application class],
@"scopedAccessSettings" : [GTLRAccessContextManager_ScopedAccessSettings class]
};
return map;
}
Expand Down Expand Up @@ -791,6 +836,17 @@ @implementation GTLRAccessContextManager_Policy
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_ReauthSettings
//

@implementation GTLRAccessContextManager_ReauthSettings
@dynamic maxInactivity, reauthMethod, sessionLength, sessionLengthEnabled,
useOidcMaxAge;
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_ReplaceAccessLevelsRequest
Expand Down Expand Up @@ -871,6 +927,16 @@ @implementation GTLRAccessContextManager_ReplaceServicePerimetersResponse
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_ScopedAccessSettings
//

@implementation GTLRAccessContextManager_ScopedAccessSettings
@dynamic activeSettings, dryRunSettings, scope;
@end


// ----------------------------------------------------------------------------
//
// GTLRAccessContextManager_ServicePerimeter
Expand Down
Loading

0 comments on commit 1e895b3

Please sign in to comment.