@maxim_mazurok/gapi.client.appengine-v1alpha 0.0.20250512 → 0.0.20250611

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +249 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://appengine.googleapis.com/$discovery/rest?version=v1alpha
12
- // Revision: 20250512
12
+ // Revision: 20250611
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -907,6 +907,253 @@ declare namespace gapi.client {
907
907
  locations: LocationsResource;
908
908
  operations: OperationsResource;
909
909
  }
910
+ interface AuthorizedCertificatesResource {
911
+ /** Uploads the specified SSL certificate. */
912
+ create(request: {
913
+ /** V1 error format. */
914
+ '$.xgafv'?: string;
915
+ /** OAuth access token. */
916
+ access_token?: string;
917
+ /** Data format for response. */
918
+ alt?: string;
919
+ /** Part of `parent`. See documentation of `projectsId`. */
920
+ applicationsId: string;
921
+ /** JSONP */
922
+ callback?: string;
923
+ /** Selector specifying which fields to include in a partial response. */
924
+ fields?: string;
925
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
926
+ key?: string;
927
+ /** Part of `parent`. See documentation of `projectsId`. */
928
+ locationsId: string;
929
+ /** OAuth 2.0 token for the current user. */
930
+ oauth_token?: string;
931
+ /** Returns response with indentations and line breaks. */
932
+ prettyPrint?: boolean;
933
+ /** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
934
+ projectsId: string;
935
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
936
+ quotaUser?: string;
937
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
938
+ upload_protocol?: string;
939
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
940
+ uploadType?: string;
941
+ /** Request body */
942
+ resource: AuthorizedCertificate;
943
+ }): Request<AuthorizedCertificate>;
944
+ create(
945
+ request: {
946
+ /** V1 error format. */
947
+ '$.xgafv'?: string;
948
+ /** OAuth access token. */
949
+ access_token?: string;
950
+ /** Data format for response. */
951
+ alt?: string;
952
+ /** Part of `parent`. See documentation of `projectsId`. */
953
+ applicationsId: string;
954
+ /** JSONP */
955
+ callback?: string;
956
+ /** Selector specifying which fields to include in a partial response. */
957
+ fields?: string;
958
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
959
+ key?: string;
960
+ /** Part of `parent`. See documentation of `projectsId`. */
961
+ locationsId: string;
962
+ /** OAuth 2.0 token for the current user. */
963
+ oauth_token?: string;
964
+ /** Returns response with indentations and line breaks. */
965
+ prettyPrint?: boolean;
966
+ /** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
967
+ projectsId: string;
968
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
969
+ quotaUser?: string;
970
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
971
+ upload_protocol?: string;
972
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
973
+ uploadType?: string;
974
+ },
975
+ body: AuthorizedCertificate,
976
+ ): Request<AuthorizedCertificate>;
977
+ /** Deletes the specified SSL certificate. */
978
+ delete(request?: {
979
+ /** V1 error format. */
980
+ '$.xgafv'?: string;
981
+ /** OAuth access token. */
982
+ access_token?: string;
983
+ /** Data format for response. */
984
+ alt?: string;
985
+ /** Part of `name`. See documentation of `projectsId`. */
986
+ applicationsId: string;
987
+ /** Part of `name`. See documentation of `projectsId`. */
988
+ authorizedCertificatesId: string;
989
+ /** JSONP */
990
+ callback?: string;
991
+ /** Selector specifying which fields to include in a partial response. */
992
+ fields?: string;
993
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
994
+ key?: string;
995
+ /** Part of `name`. See documentation of `projectsId`. */
996
+ locationsId: string;
997
+ /** OAuth 2.0 token for the current user. */
998
+ oauth_token?: string;
999
+ /** Returns response with indentations and line breaks. */
1000
+ prettyPrint?: boolean;
1001
+ /** Part of `name`. Name of the resource to delete. Example: apps/myapp/authorizedCertificates/12345. */
1002
+ projectsId: string;
1003
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1004
+ quotaUser?: string;
1005
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
1006
+ upload_protocol?: string;
1007
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1008
+ uploadType?: string;
1009
+ }): Request<{}>;
1010
+ /** Gets the specified SSL certificate. */
1011
+ get(request?: {
1012
+ /** V1 error format. */
1013
+ '$.xgafv'?: string;
1014
+ /** OAuth access token. */
1015
+ access_token?: string;
1016
+ /** Data format for response. */
1017
+ alt?: string;
1018
+ /** Part of `name`. See documentation of `projectsId`. */
1019
+ applicationsId: string;
1020
+ /** Part of `name`. See documentation of `projectsId`. */
1021
+ authorizedCertificatesId: string;
1022
+ /** JSONP */
1023
+ callback?: string;
1024
+ /** Selector specifying which fields to include in a partial response. */
1025
+ fields?: string;
1026
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1027
+ key?: string;
1028
+ /** Part of `name`. See documentation of `projectsId`. */
1029
+ locationsId: string;
1030
+ /** OAuth 2.0 token for the current user. */
1031
+ oauth_token?: string;
1032
+ /** Returns response with indentations and line breaks. */
1033
+ prettyPrint?: boolean;
1034
+ /** Part of `name`. Name of the resource requested. Example: apps/myapp/authorizedCertificates/12345. */
1035
+ projectsId: string;
1036
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1037
+ quotaUser?: string;
1038
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
1039
+ upload_protocol?: string;
1040
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1041
+ uploadType?: string;
1042
+ /** Controls the set of fields returned in the GET response. */
1043
+ view?: string;
1044
+ }): Request<AuthorizedCertificate>;
1045
+ /** Lists all SSL certificates the user is authorized to administer. */
1046
+ list(request?: {
1047
+ /** V1 error format. */
1048
+ '$.xgafv'?: string;
1049
+ /** OAuth access token. */
1050
+ access_token?: string;
1051
+ /** Data format for response. */
1052
+ alt?: string;
1053
+ /** Part of `parent`. See documentation of `projectsId`. */
1054
+ applicationsId: string;
1055
+ /** JSONP */
1056
+ callback?: string;
1057
+ /** Selector specifying which fields to include in a partial response. */
1058
+ fields?: string;
1059
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1060
+ key?: string;
1061
+ /** Part of `parent`. See documentation of `projectsId`. */
1062
+ locationsId: string;
1063
+ /** OAuth 2.0 token for the current user. */
1064
+ oauth_token?: string;
1065
+ /** Maximum results to return per page. */
1066
+ pageSize?: number;
1067
+ /** Continuation token for fetching the next page of results. */
1068
+ pageToken?: string;
1069
+ /** Returns response with indentations and line breaks. */
1070
+ prettyPrint?: boolean;
1071
+ /** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
1072
+ projectsId: string;
1073
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1074
+ quotaUser?: string;
1075
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
1076
+ upload_protocol?: string;
1077
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1078
+ uploadType?: string;
1079
+ /** Controls the set of fields returned in the LIST response. */
1080
+ view?: string;
1081
+ }): Request<ListAuthorizedCertificatesResponse>;
1082
+ /** Updates the specified SSL certificate. To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be applicable to the same domains as the original certificate. The certificate display_name may also be updated. */
1083
+ patch(request: {
1084
+ /** V1 error format. */
1085
+ '$.xgafv'?: string;
1086
+ /** OAuth access token. */
1087
+ access_token?: string;
1088
+ /** Data format for response. */
1089
+ alt?: string;
1090
+ /** Part of `name`. See documentation of `projectsId`. */
1091
+ applicationsId: string;
1092
+ /** Part of `name`. See documentation of `projectsId`. */
1093
+ authorizedCertificatesId: string;
1094
+ /** JSONP */
1095
+ callback?: string;
1096
+ /** Selector specifying which fields to include in a partial response. */
1097
+ fields?: string;
1098
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1099
+ key?: string;
1100
+ /** Part of `name`. See documentation of `projectsId`. */
1101
+ locationsId: string;
1102
+ /** OAuth 2.0 token for the current user. */
1103
+ oauth_token?: string;
1104
+ /** Returns response with indentations and line breaks. */
1105
+ prettyPrint?: boolean;
1106
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
1107
+ projectsId: string;
1108
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1109
+ quotaUser?: string;
1110
+ /** Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields. */
1111
+ updateMask?: string;
1112
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
1113
+ upload_protocol?: string;
1114
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1115
+ uploadType?: string;
1116
+ /** Request body */
1117
+ resource: AuthorizedCertificate;
1118
+ }): Request<AuthorizedCertificate>;
1119
+ patch(
1120
+ request: {
1121
+ /** V1 error format. */
1122
+ '$.xgafv'?: string;
1123
+ /** OAuth access token. */
1124
+ access_token?: string;
1125
+ /** Data format for response. */
1126
+ alt?: string;
1127
+ /** Part of `name`. See documentation of `projectsId`. */
1128
+ applicationsId: string;
1129
+ /** Part of `name`. See documentation of `projectsId`. */
1130
+ authorizedCertificatesId: string;
1131
+ /** JSONP */
1132
+ callback?: string;
1133
+ /** Selector specifying which fields to include in a partial response. */
1134
+ fields?: string;
1135
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1136
+ key?: string;
1137
+ /** Part of `name`. See documentation of `projectsId`. */
1138
+ locationsId: string;
1139
+ /** OAuth 2.0 token for the current user. */
1140
+ oauth_token?: string;
1141
+ /** Returns response with indentations and line breaks. */
1142
+ prettyPrint?: boolean;
1143
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
1144
+ projectsId: string;
1145
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1146
+ quotaUser?: string;
1147
+ /** Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields. */
1148
+ updateMask?: string;
1149
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
1150
+ upload_protocol?: string;
1151
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1152
+ uploadType?: string;
1153
+ },
1154
+ body: AuthorizedCertificate,
1155
+ ): Request<AuthorizedCertificate>;
1156
+ }
910
1157
  interface AuthorizedDomainsResource {
911
1158
  /** Lists all domains the user is authorized to administer. */
912
1159
  list(request?: {
@@ -980,6 +1227,7 @@ declare namespace gapi.client {
980
1227
  }): Request<DomainMapping>;
981
1228
  }
982
1229
  interface ApplicationsResource {
1230
+ authorizedCertificates: AuthorizedCertificatesResource;
983
1231
  authorizedDomains: AuthorizedDomainsResource;
984
1232
  domainMappings: DomainMappingsResource;
985
1233
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1alpha",
3
- "version": "0.0.20250512",
3
+ "version": "0.0.20250611",
4
4
  "description": "TypeScript typings for App Engine Admin API v1alpha",
5
5
  "repository": {
6
6
  "type": "git",