Skip to content

Commit abd2857

Browse files
committed
Update services.
1 parent 9bab6cd commit abd2857

File tree

327 files changed

+40950
-17592
lines changed

Some content is hidden

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

327 files changed

+40950
-17592
lines changed

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

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

Sources/GeneratedServices/APIManagement/GTLRAPIManagementObjects.m

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

500500
@implementation GTLRAPIManagement_ListOperationsResponse
501-
@dynamic nextPageToken, operations;
501+
@dynamic nextPageToken, operations, unreachable;
502502

503503
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
504504
NSDictionary<NSString *, Class> *map = @{
505-
@"operations" : [GTLRAPIManagement_Operation class]
505+
@"operations" : [GTLRAPIManagement_Operation class],
506+
@"unreachable" : [NSString class]
506507
};
507508
return map;
508509
}

Sources/GeneratedServices/APIManagement/GTLRAPIManagementQuery.m

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

493493
@implementation GTLRAPIManagementQuery_ProjectsLocationsOperationsList
494494

495-
@dynamic filter, name, pageSize, pageToken;
495+
@dynamic filter, name, pageSize, pageToken, returnPartialSuccess;
496496

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

Sources/GeneratedServices/APIManagement/Public/GoogleAPIClientForREST/GTLRAPIManagementObjects.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,6 +1015,13 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIManagement_TagAction_Action_Remove;
10151015
*/
10161016
@property(nonatomic, strong, nullable) NSArray<GTLRAPIManagement_Operation *> *operations;
10171017

1018+
/**
1019+
* Unordered list. Unreachable resources. Populated when the request sets
1020+
* `ListOperationsRequest.return_partial_success` and reads across collections
1021+
* e.g. when attempting to list all resources across all supported locations.
1022+
*/
1023+
@property(nonatomic, strong, nullable) NSArray<NSString *> *unreachable;
1024+
10181025
@end
10191026

10201027

Sources/GeneratedServices/APIManagement/Public/GoogleAPIClientForREST/GTLRAPIManagementQuery.h

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ NS_ASSUME_NONNULL_BEGIN
101101
@interface GTLRAPIManagementQuery_ProjectsLocationsList : GTLRAPIManagementQuery
102102

103103
/**
104-
* Optional. Do not use this field. It is unsupported and is ignored unless
105-
* explicitly documented otherwise. This is primarily for internal usage.
104+
* Optional. Unless explicitly documented otherwise, don't use this unsupported
105+
* field which is primarily intended for internal usage.
106106
*/
107107
@property(nonatomic, strong, nullable) NSArray<NSString *> *extraLocationTypes;
108108

@@ -933,6 +933,17 @@ NS_ASSUME_NONNULL_BEGIN
933933
/** The standard list page token. */
934934
@property(nonatomic, copy, nullable) NSString *pageToken;
935935

936+
/**
937+
* When set to `true`, operations that are reachable are returned as normal,
938+
* and those that are unreachable are returned in the
939+
* [ListOperationsResponse.unreachable] field. This can only be `true` when
940+
* reading across collections e.g. when `parent` is set to
941+
* `"projects/example/locations/-"`. This field is not by default supported and
942+
* will result in an `UNIMPLEMENTED` error if set unless explicitly documented
943+
* otherwise in service or product specific documentation.
944+
*/
945+
@property(nonatomic, assign) BOOL returnPartialSuccess;
946+
936947
/**
937948
* Fetches a @c GTLRAPIManagement_ListOperationsResponse.
938949
*

Sources/GeneratedServices/APIhub/GTLRAPIhubObjects.m

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,18 @@
184184
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_State_LintStateSuccess = @"LINT_STATE_SUCCESS";
185185
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_State_LintStateUnspecified = @"LINT_STATE_UNSPECIFIED";
186186

187+
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest.action
188+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_ActionUnspecified = @"ACTION_UNSPECIFIED";
189+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Delete = @"DELETE";
190+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Upload = @"UPLOAD";
191+
192+
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest.dataType
193+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_DataTypeUnspecified = @"DATA_TYPE_UNSPECIFIED";
194+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_EnvironmentManifest = @"ENVIRONMENT_MANIFEST";
195+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyBundle = @"PROXY_BUNDLE";
196+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyDeploymentManifest = @"PROXY_DEPLOYMENT_MANIFEST";
197+
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_SharedFlowBundle = @"SHARED_FLOW_BUNDLE";
198+
187199
// GTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails.format
188200
NSString * const kGTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails_Format_FormatUnspecified = @"FORMAT_UNSPECIFIED";
189201
NSString * const kGTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails_Format_OpenApiSpec20 = @"OPEN_API_SPEC_2_0";
@@ -1550,6 +1562,25 @@ @implementation GTLRAPIhub_GoogleCloudApihubV1LookupRuntimeProjectAttachmentResp
15501562
@end
15511563

15521564

1565+
// ----------------------------------------------------------------------------
1566+
//
1567+
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest
1568+
//
1569+
1570+
@implementation GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest
1571+
@dynamic action, data, dataType, relativePath;
1572+
@end
1573+
1574+
1575+
// ----------------------------------------------------------------------------
1576+
//
1577+
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse
1578+
//
1579+
1580+
@implementation GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse
1581+
@end
1582+
1583+
15531584
// ----------------------------------------------------------------------------
15541585
//
15551586
// GTLRAPIhub_GoogleCloudApihubV1MatchResult

Sources/GeneratedServices/APIhub/GTLRAPIhubQuery.m

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1781,6 +1781,33 @@ + (instancetype)queryWithParent:(NSString *)parent {
17811781

17821782
@end
17831783

1784+
@implementation GTLRAPIhubQuery_ProjectsLocationsPluginsInstancesManageSourceData
1785+
1786+
@dynamic name;
1787+
1788+
+ (instancetype)queryWithObject:(GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest *)object
1789+
name:(NSString *)name {
1790+
if (object == nil) {
1791+
#if defined(DEBUG) && DEBUG
1792+
NSAssert(object != nil, @"Got a nil object");
1793+
#endif
1794+
return nil;
1795+
}
1796+
NSArray *pathParams = @[ @"name" ];
1797+
NSString *pathURITemplate = @"v1/{+name}:manageSourceData";
1798+
GTLRAPIhubQuery_ProjectsLocationsPluginsInstancesManageSourceData *query =
1799+
[[self alloc] initWithPathURITemplate:pathURITemplate
1800+
HTTPMethod:@"POST"
1801+
pathParameterNames:pathParams];
1802+
query.bodyObject = object;
1803+
query.name = name;
1804+
query.expectedObjectClass = [GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse class];
1805+
query.loggingName = @"apihub.projects.locations.plugins.instances.manageSourceData";
1806+
return query;
1807+
}
1808+
1809+
@end
1810+
17841811
@implementation GTLRAPIhubQuery_ProjectsLocationsPluginsInstancesPatch
17851812

17861813
@dynamic name, updateMask;

Sources/GeneratedServices/APIhub/Public/GoogleAPIClientForREST/GTLRAPIhubObjects.h

Lines changed: 119 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,6 +954,62 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_S
954954
*/
955955
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_State_LintStateUnspecified;
956956

957+
// ----------------------------------------------------------------------------
958+
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest.action
959+
960+
/**
961+
* Default unspecified action.
962+
*
963+
* Value: "ACTION_UNSPECIFIED"
964+
*/
965+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_ActionUnspecified;
966+
/**
967+
* Delete data.
968+
*
969+
* Value: "DELETE"
970+
*/
971+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Delete;
972+
/**
973+
* Upload or upsert data.
974+
*
975+
* Value: "UPLOAD"
976+
*/
977+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Upload;
978+
979+
// ----------------------------------------------------------------------------
980+
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest.dataType
981+
982+
/**
983+
* Default unspecified type.
984+
*
985+
* Value: "DATA_TYPE_UNSPECIFIED"
986+
*/
987+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_DataTypeUnspecified;
988+
/**
989+
* Environment manifest.
990+
*
991+
* Value: "ENVIRONMENT_MANIFEST"
992+
*/
993+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_EnvironmentManifest;
994+
/**
995+
* Proxy bundle.
996+
*
997+
* Value: "PROXY_BUNDLE"
998+
*/
999+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyBundle;
1000+
/**
1001+
* Proxy deployment manifest.
1002+
*
1003+
* Value: "PROXY_DEPLOYMENT_MANIFEST"
1004+
*/
1005+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyDeploymentManifest;
1006+
/**
1007+
* Shared flow bundle.
1008+
*
1009+
* Value: "SHARED_FLOW_BUNDLE"
1010+
*/
1011+
FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_SharedFlowBundle;
1012+
9571013
// ----------------------------------------------------------------------------
9581014
// GTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails.format
9591015

@@ -4136,6 +4192,64 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1SummaryEntry_S
41364192
@end
41374193

41384194

4195+
/**
4196+
* The ManagePluginInstanceSourceData method's request.
4197+
*/
4198+
@interface GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest : GTLRObject
4199+
4200+
/**
4201+
* Required. Action to be performed.
4202+
*
4203+
* Likely values:
4204+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_ActionUnspecified
4205+
* Default unspecified action. (Value: "ACTION_UNSPECIFIED")
4206+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Delete
4207+
* Delete data. (Value: "DELETE")
4208+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Upload
4209+
* Upload or upsert data. (Value: "UPLOAD")
4210+
*/
4211+
@property(nonatomic, copy, nullable) NSString *action;
4212+
4213+
/**
4214+
* Required. Data to be managed.
4215+
*
4216+
* Contains encoded binary data; GTLRBase64 can encode/decode (probably
4217+
* web-safe format).
4218+
*/
4219+
@property(nonatomic, copy, nullable) NSString *data;
4220+
4221+
/**
4222+
* Required. Type of data to be managed.
4223+
*
4224+
* Likely values:
4225+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_DataTypeUnspecified
4226+
* Default unspecified type. (Value: "DATA_TYPE_UNSPECIFIED")
4227+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_EnvironmentManifest
4228+
* Environment manifest. (Value: "ENVIRONMENT_MANIFEST")
4229+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyBundle
4230+
* Proxy bundle. (Value: "PROXY_BUNDLE")
4231+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyDeploymentManifest
4232+
* Proxy deployment manifest. (Value: "PROXY_DEPLOYMENT_MANIFEST")
4233+
* @arg @c kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_SharedFlowBundle
4234+
* Shared flow bundle. (Value: "SHARED_FLOW_BUNDLE")
4235+
*/
4236+
@property(nonatomic, copy, nullable) NSString *dataType;
4237+
4238+
/**
4239+
* Required. Relative path of data being managed for a given plugin instance.
4240+
*/
4241+
@property(nonatomic, copy, nullable) NSString *relativePath;
4242+
4243+
@end
4244+
4245+
4246+
/**
4247+
* The ManagePluginInstanceSourceData method's response.
4248+
*/
4249+
@interface GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse : GTLRObject
4250+
@end
4251+
4252+
41394253
/**
41404254
* MatchResult represents the result of matching a discovered API operation
41414255
* with a catalog API operation.
@@ -4390,7 +4504,11 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIhub_GoogleCloudApihubV1SummaryEntry_S
43904504
*/
43914505
@interface GTLRAPIhub_GoogleCloudApihubV1Plugin : GTLRObject
43924506

4393-
/** Required. The configuration of actions supported by the plugin. */
4507+
/**
4508+
* Optional. The configuration of actions supported by the plugin.
4509+
* **REQUIRED**: This field must be provided when creating or updating a
4510+
* Plugin. The server will reject requests if this field is missing.
4511+
*/
43944512
@property(nonatomic, strong, nullable) NSArray<GTLRAPIhub_GoogleCloudApihubV1PluginActionConfig *> *actionsConfig;
43954513

43964514
/** Optional. The configuration template for the plugin. */

Sources/GeneratedServices/APIhub/Public/GoogleAPIClientForREST/GTLRAPIhubQuery.h

Lines changed: 45 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ NS_ASSUME_NONNULL_BEGIN
7373
@end
7474

7575
/**
76-
* Deletes the API hub instance.
76+
* Deletes the API hub instance. Deleting the API hub instance will also result
77+
* in the removal of all associated runtime project attachments and the host
78+
* project registration.
7779
*
7880
* Method: apihub.projects.locations.apiHubInstances.delete
7981
*
@@ -91,7 +93,9 @@ NS_ASSUME_NONNULL_BEGIN
9193
/**
9294
* Fetches a @c GTLRAPIhub_GoogleLongrunningOperation.
9395
*
94-
* Deletes the API hub instance.
96+
* Deletes the API hub instance. Deleting the API hub instance will also result
97+
* in the removal of all associated runtime project attachments and the host
98+
* project registration.
9599
*
96100
* @param name Required. The name of the Api Hub instance to delete. Format:
97101
* `projects/{project}/locations/{location}/apiHubInstances/{apiHubInstance}`.
@@ -3026,8 +3030,8 @@ NS_ASSUME_NONNULL_BEGIN
30263030
@interface GTLRAPIhubQuery_ProjectsLocationsList : GTLRAPIhubQuery
30273031

30283032
/**
3029-
* Optional. Do not use this field. It is unsupported and is ignored unless
3030-
* explicitly documented otherwise. This is primarily for internal usage.
3033+
* Optional. Unless explicitly documented otherwise, don't use this unsupported
3034+
* field which is primarily intended for internal usage.
30313035
*/
30323036
@property(nonatomic, strong, nullable) NSArray<NSString *> *extraLocationTypes;
30333037

@@ -3743,6 +3747,43 @@ NS_ASSUME_NONNULL_BEGIN
37433747

37443748
@end
37453749

3750+
/**
3751+
* Manages data for a given plugin instance.
3752+
*
3753+
* Method: apihub.projects.locations.plugins.instances.manageSourceData
3754+
*
3755+
* Authorization scope(s):
3756+
* @c kGTLRAuthScopeAPIhubCloudPlatform
3757+
*/
3758+
@interface GTLRAPIhubQuery_ProjectsLocationsPluginsInstancesManageSourceData : GTLRAPIhubQuery
3759+
3760+
/**
3761+
* Required. The name of the plugin instance for which data needs to be
3762+
* managed. Format:
3763+
* `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`
3764+
*/
3765+
@property(nonatomic, copy, nullable) NSString *name;
3766+
3767+
/**
3768+
* Fetches a @c
3769+
* GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse.
3770+
*
3771+
* Manages data for a given plugin instance.
3772+
*
3773+
* @param object The @c
3774+
* GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest to
3775+
* include in the query.
3776+
* @param name Required. The name of the plugin instance for which data needs
3777+
* to be managed. Format:
3778+
* `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`
3779+
*
3780+
* @return GTLRAPIhubQuery_ProjectsLocationsPluginsInstancesManageSourceData
3781+
*/
3782+
+ (instancetype)queryWithObject:(GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest *)object
3783+
name:(NSString *)name;
3784+
3785+
@end
3786+
37463787
/**
37473788
* Updates a plugin instance in the API hub. The following fields in the
37483789
* plugin_instance can be updated currently: * display_name *

0 commit comments

Comments
 (0)