Skip to content

Commit 6e2f3cc

Browse files
committed
feat: update generated APIs
1 parent b041972 commit 6e2f3cc

File tree

6 files changed

+39
-7
lines changed

6 files changed

+39
-7
lines changed

packages_generated/container/src/v1beta1/api.gen.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,9 @@ export class API extends ParentAPI {
314314

315315
/**
316316
* Update an existing container. Update the container associated with the specified ID.
317+
318+
When updating a container, the container is automatically redeployed to apply the changes.
319+
This behavior can be changed by setting the `redeploy` field to `false` in the request.
317320
*
318321
* @param request - The request {@link UpdateContainerRequest}
319322
* @returns A Promise of Container

packages_generated/container/src/v1beta1/types.gen.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,18 @@ export type UpdateContainerRequest = {
12821282
*/
12831283
port?: number
12841284
/**
1285-
* Secret environment variables of the container.
1285+
* During an update, secret environment variables that are not specified in this field will be kept unchanged.
1286+
1287+
In order to delete a specific secret environment variable, you must reference its key, but not provide any value for it.
1288+
For example, the following payload will delete the `TO_DELETE` secret environment variable:
1289+
1290+
```json
1291+
{
1292+
"secret_environment_variables":[
1293+
{"key":"TO_DELETE"}
1294+
]
1295+
}
1296+
```.
12861297
*/
12871298
secretEnvironmentVariables?: Secret[]
12881299
/**

packages_generated/domain/src/v2beta1/index.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ export type {
8181
ImportRawDNSZoneRequestBindSource,
8282
ImportRawDNSZoneRequestTsigKey,
8383
ImportRawDNSZoneResponse,
84+
InboundTransfer,
85+
InboundTransferStatus,
8486
LinkedProduct,
8587
ListContactsRequestRole,
8688
ListContactsResponse,
@@ -99,6 +101,7 @@ export type {
99101
ListDomainHostsResponse,
100102
ListDomainsRequestOrderBy,
101103
ListDomainsResponse,
104+
ListInboundTransfersResponse,
102105
ListRenewableDomainsRequestOrderBy,
103106
ListRenewableDomainsResponse,
104107
ListSSLCertificatesRequest,
@@ -135,6 +138,7 @@ export type {
135138
RegistrarApiListContactsRequest,
136139
RegistrarApiListDomainHostsRequest,
137140
RegistrarApiListDomainsRequest,
141+
RegistrarApiListInboundTransfersRequest,
138142
RegistrarApiListRenewableDomainsRequest,
139143
RegistrarApiListTasksRequest,
140144
RegistrarApiListTldsRequest,

packages_generated/function/src/v1beta1/api.gen.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,9 @@ export class API extends ParentAPI {
323323

324324
/**
325325
* Update an existing function. Update the function associated with the specified ID.
326+
327+
When updating a function, the function is automatically redeployed to apply the changes.
328+
This behavior can be changed by setting the `redeploy` field to `false` in the request.
326329
*
327330
* @param request - The request {@link UpdateFunctionRequest}
328331
* @returns A Promise of Function

packages_generated/function/src/v1beta1/types.gen.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,18 @@ export type UpdateFunctionRequest = {
12811281
*/
12821282
description?: string
12831283
/**
1284-
* Secret environment variables of the function.
1284+
* During an update, secret environment variables that are not specified in this field will be kept unchanged.
1285+
1286+
In order to delete a specific secret environment variable, you must reference its key, but not provide any value for it.
1287+
For example, the following payload will delete the `TO_DELETE` secret environment variable:
1288+
1289+
```json
1290+
{
1291+
"secret_environment_variables":[
1292+
{"key":"TO_DELETE"}
1293+
]
1294+
}
1295+
```.
12851296
*/
12861297
secretEnvironmentVariables?: Secret[]
12871298
/**

packages_generated/iam/src/v1alpha1/index.gen.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export type {
1717
CreateApplicationRequest,
1818
CreateGroupRequest,
1919
CreateJWTRequest,
20-
CreateOrganizationSamlRequest,
2120
CreatePolicyRequest,
2221
CreateSSHKeyRequest,
2322
CreateUserMFAOTPRequest,
@@ -27,12 +26,13 @@ export type {
2726
DeleteApplicationRequest,
2827
DeleteGroupRequest,
2928
DeleteJWTRequest,
30-
DeleteOrganizationSamlRequest,
3129
DeletePolicyRequest,
3230
DeleteSamlCertificateRequest,
31+
DeleteSamlRequest,
3332
DeleteSSHKeyRequest,
3433
DeleteUserMFAOTPRequest,
3534
DeleteUserRequest,
35+
EnableOrganizationSamlRequest,
3636
EncodedJWT,
3737
GetAPIKeyRequest,
3838
GetApplicationRequest,
@@ -44,7 +44,6 @@ export type {
4444
GetOrganizationSecuritySettingsRequest,
4545
GetPolicyRequest,
4646
GetQuotumRequest,
47-
GetSamlInformationRequest,
4847
GetSSHKeyRequest,
4948
GetUserConnectionsRequest,
5049
GetUserConnectionsResponse,
@@ -114,7 +113,8 @@ export type {
114113
SamlCertificate,
115114
SamlCertificateOrigin,
116115
SamlCertificateType,
117-
SamlInformation,
116+
SamlServiceProvider,
117+
SamlStatus,
118118
SetGroupMembersRequest,
119119
SetOrganizationAliasRequest,
120120
SetRulesRequest,
@@ -124,9 +124,9 @@ export type {
124124
UpdateAPIKeyRequest,
125125
UpdateApplicationRequest,
126126
UpdateGroupRequest,
127-
UpdateOrganizationSamlRequest,
128127
UpdateOrganizationSecuritySettingsRequest,
129128
UpdatePolicyRequest,
129+
UpdateSamlRequest,
130130
UpdateSSHKeyRequest,
131131
UpdateUserPasswordRequest,
132132
UpdateUserRequest,

0 commit comments

Comments
 (0)