@maxim_mazurok/gapi.client.appengine-v1alpha 0.2.20251005 → 0.2.20251110
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.
- package/index.d.ts +45 -10
- 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:
|
|
12
|
+
// Revision: 20251110
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -35,17 +35,17 @@ declare namespace gapi.client {
|
|
|
35
35
|
displayName?: string;
|
|
36
36
|
/** Aggregate count of the domain mappings with this certificate mapped. This count includes domain mappings on applications for which the user does not have VIEWER permissions.Only returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly */
|
|
37
37
|
domainMappingsCount?: number;
|
|
38
|
-
/** Topmost applicable domains of this certificate. This certificate applies to these domains and their subdomains. Example: example.com.@OutputOnly */
|
|
38
|
+
/** Output only. Topmost applicable domains of this certificate. This certificate applies to these domains and their subdomains. Example: example.com.@OutputOnly */
|
|
39
39
|
domainNames?: string[];
|
|
40
40
|
/** The time when this certificate expires. To update the renewal time on this certificate, upload an SSL certificate with a different expiration time using AuthorizedCertificates.UpdateAuthorizedCertificate.@OutputOnly */
|
|
41
41
|
expireTime?: string;
|
|
42
|
-
/** Relative name of the certificate. This is a unique value autogenerated on AuthorizedCertificate resource creation. Example: 12345.@OutputOnly */
|
|
42
|
+
/** Output only. Relative name of the certificate. This is a unique value autogenerated on AuthorizedCertificate resource creation. Example: 12345.@OutputOnly */
|
|
43
43
|
id?: string;
|
|
44
44
|
/** Only applicable if this certificate is managed by App Engine. Managed certificates are tied to the lifecycle of a DomainMapping and cannot be updated or deleted via the AuthorizedCertificates API. If this certificate is manually administered by the user, this field will be empty.@OutputOnly */
|
|
45
45
|
managedCertificate?: ManagedCertificate;
|
|
46
|
-
/** Full path to the AuthorizedCertificate resource in the API. Example: apps/myapp/authorizedCertificates/12345.@OutputOnly */
|
|
46
|
+
/** Output only. Full path to the AuthorizedCertificate resource in the API. Example: apps/myapp/authorizedCertificates/12345.@OutputOnly */
|
|
47
47
|
name?: string;
|
|
48
|
-
/** The full paths to user visible Domain Mapping resources that have this certificate mapped. Example: apps/myapp/domainMappings/example.com.This may not represent the full list of mapped domain mappings if the user does not have VIEWER permissions on all of the applications that have this certificate mapped. See domain_mappings_count for a complete count.Only returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly */
|
|
48
|
+
/** Output only. The full paths to user visible Domain Mapping resources that have this certificate mapped. Example: apps/myapp/domainMappings/example.com.This may not represent the full list of mapped domain mappings if the user does not have VIEWER permissions on all of the applications that have this certificate mapped. See domain_mappings_count for a complete count.Only returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly */
|
|
49
49
|
visibleDomainMappings?: string[];
|
|
50
50
|
}
|
|
51
51
|
interface AuthorizedDomain {
|
|
@@ -82,9 +82,9 @@ declare namespace gapi.client {
|
|
|
82
82
|
interface DomainMapping {
|
|
83
83
|
/** Relative name of the domain serving the application. Example: example.com. */
|
|
84
84
|
id?: string;
|
|
85
|
-
/** Full path to the DomainMapping resource in the API. Example: apps/myapp/domainMapping/example.com.@OutputOnly */
|
|
85
|
+
/** Output only. Full path to the DomainMapping resource in the API. Example: apps/myapp/domainMapping/example.com.@OutputOnly */
|
|
86
86
|
name?: string;
|
|
87
|
-
/** The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.@OutputOnly */
|
|
87
|
+
/** Output only. The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.@OutputOnly */
|
|
88
88
|
resourceRecords?: ResourceRecord[];
|
|
89
89
|
/** SSL configuration for this domain. If unconfigured, this domain will not serve with SSL. */
|
|
90
90
|
sslSettings?: SslSettings;
|
|
@@ -282,7 +282,7 @@ declare namespace gapi.client {
|
|
|
282
282
|
interface SslSettings {
|
|
283
283
|
/** ID of the AuthorizedCertificate resource configuring SSL for the application. Clearing this field will remove SSL support.By default, a managed certificate is automatically created for every domain mapping. To omit SSL support or to configure SSL manually, specify no_managed_certificate on a CREATE or UPDATE request. You must be authorized to administer the AuthorizedCertificate resource to manually map it to a DomainMapping resource. Example: 12345. */
|
|
284
284
|
certificateId?: string;
|
|
285
|
-
/** Whether the mapped certificate is an App Engine managed certificate. Managed certificates are created by default with a domain mapping. To opt out, specify no_managed_certificate on a CREATE or UPDATE request.@OutputOnly */
|
|
285
|
+
/** Output only. Whether the mapped certificate is an App Engine managed certificate. Managed certificates are created by default with a domain mapping. To opt out, specify no_managed_certificate on a CREATE or UPDATE request.@OutputOnly */
|
|
286
286
|
isManagedCertificate?: boolean;
|
|
287
287
|
}
|
|
288
288
|
interface Status {
|
|
@@ -814,7 +814,7 @@ declare namespace gapi.client {
|
|
|
814
814
|
appsId: string;
|
|
815
815
|
/** JSONP */
|
|
816
816
|
callback?: string;
|
|
817
|
-
/** Optional.
|
|
817
|
+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
818
818
|
extraLocationTypes?: string | string[];
|
|
819
819
|
/** Selector specifying which fields to include in a partial response. */
|
|
820
820
|
fields?: string;
|
|
@@ -1336,6 +1336,41 @@ declare namespace gapi.client {
|
|
|
1336
1336
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1337
1337
|
uploadType?: string;
|
|
1338
1338
|
}): Request<DomainMapping>;
|
|
1339
|
+
/** Lists the domain mappings on an application. */
|
|
1340
|
+
list(request?: {
|
|
1341
|
+
/** V1 error format. */
|
|
1342
|
+
'$.xgafv'?: string;
|
|
1343
|
+
/** OAuth access token. */
|
|
1344
|
+
access_token?: string;
|
|
1345
|
+
/** Data format for response. */
|
|
1346
|
+
alt?: string;
|
|
1347
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
1348
|
+
applicationsId: string;
|
|
1349
|
+
/** JSONP */
|
|
1350
|
+
callback?: string;
|
|
1351
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1352
|
+
fields?: string;
|
|
1353
|
+
/** 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. */
|
|
1354
|
+
key?: string;
|
|
1355
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
1356
|
+
locationsId: string;
|
|
1357
|
+
/** OAuth 2.0 token for the current user. */
|
|
1358
|
+
oauth_token?: string;
|
|
1359
|
+
/** Maximum results to return per page. */
|
|
1360
|
+
pageSize?: number;
|
|
1361
|
+
/** Continuation token for fetching the next page of results. */
|
|
1362
|
+
pageToken?: string;
|
|
1363
|
+
/** Returns response with indentations and line breaks. */
|
|
1364
|
+
prettyPrint?: boolean;
|
|
1365
|
+
/** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
|
|
1366
|
+
projectsId: string;
|
|
1367
|
+
/** 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. */
|
|
1368
|
+
quotaUser?: string;
|
|
1369
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1370
|
+
upload_protocol?: string;
|
|
1371
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1372
|
+
uploadType?: string;
|
|
1373
|
+
}): Request<ListDomainMappingsResponse>;
|
|
1339
1374
|
/** Updates the specified domain mapping. To map an SSL certificate to a domain mapping, update certificate_id to point to an AuthorizedCertificate resource. A user must be authorized to administer the associated domain in order to update a DomainMapping resource. */
|
|
1340
1375
|
patch(request: {
|
|
1341
1376
|
/** V1 error format. */
|
|
@@ -1530,7 +1565,7 @@ declare namespace gapi.client {
|
|
|
1530
1565
|
alt?: string;
|
|
1531
1566
|
/** JSONP */
|
|
1532
1567
|
callback?: string;
|
|
1533
|
-
/** Optional.
|
|
1568
|
+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
1534
1569
|
extraLocationTypes?: string | string[];
|
|
1535
1570
|
/** Selector specifying which fields to include in a partial response. */
|
|
1536
1571
|
fields?: string;
|