@ibm-cloud/secrets-manager 2.0.3 → 2.0.5
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/CHANGELOG.md +4 -0
- package/README.md +1 -2
- package/examples/secrets-manager.v2.test.js +15 -26
- package/package.json +2 -2
- package/secrets-manager/v2.d.ts +821 -293
- package/secrets-manager/v2.js +138 -78
- package/secrets-manager/v2.js.map +1 -1
package/secrets-manager/v2.js
CHANGED
|
@@ -77,7 +77,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
77
77
|
}
|
|
78
78
|
};
|
|
79
79
|
/**
|
|
80
|
-
* IBM OpenAPI SDK Code Generator Version: 3.
|
|
80
|
+
* IBM OpenAPI SDK Code Generator Version: 3.93.0-c40121e6-20240729-182103
|
|
81
81
|
*/
|
|
82
82
|
/* eslint-disable max-classes-per-file */
|
|
83
83
|
/* eslint-disable no-await-in-loop */
|
|
@@ -444,13 +444,25 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
444
444
|
*
|
|
445
445
|
* **Usage:** To retrieve a list of secrets that are associated with an existing secret group or the default group,
|
|
446
446
|
* use `..?groups={secret_group_ID},default`.
|
|
447
|
+
* @param {string[]} [params.secretTypes] - Filter secrets by types.
|
|
448
|
+
*
|
|
449
|
+
* You can apply multiple filters by using a comma-separated list of secret types.
|
|
450
|
+
*
|
|
451
|
+
* **Usage:** To retrieve a list of imported certificates and public certificates use
|
|
452
|
+
* `..?secret_types=imported_cert,public_cert`.
|
|
453
|
+
* @param {string[]} [params.matchAllLabels] - Filter secrets by labels.
|
|
454
|
+
*
|
|
455
|
+
* You can use a comma-separated list of labels to filter secrets that include all of the labels in the list.
|
|
456
|
+
*
|
|
457
|
+
* **Usage:** To retrieve a list of secrets that include both the label "dev" and the label "us-south" in their list
|
|
458
|
+
* of labels, use `..?labels=dev,us-south`.
|
|
447
459
|
* @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
|
|
448
460
|
* @returns {Promise<SecretsManagerV2.Response<SecretsManagerV2.SecretMetadataPaginatedCollection>>}
|
|
449
461
|
*/
|
|
450
462
|
SecretsManagerV2.prototype.listSecrets = function (params) {
|
|
451
463
|
var _params = __assign({}, params);
|
|
452
464
|
var _requiredParams = [];
|
|
453
|
-
var _validParams = ['offset', 'limit', 'sort', 'search', 'groups', 'headers'];
|
|
465
|
+
var _validParams = ['offset', 'limit', 'sort', 'search', 'groups', 'secretTypes', 'matchAllLabels', 'headers'];
|
|
454
466
|
var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
|
|
455
467
|
if (_validationErrors) {
|
|
456
468
|
return Promise.reject(_validationErrors);
|
|
@@ -461,6 +473,8 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
461
473
|
'sort': _params.sort,
|
|
462
474
|
'search': _params.search,
|
|
463
475
|
'groups': _params.groups,
|
|
476
|
+
'secret_types': _params.secretTypes,
|
|
477
|
+
'match_all_labels': _params.matchAllLabels,
|
|
464
478
|
};
|
|
465
479
|
var sdkHeaders = (0, common_1.getSdkHeaders)(SecretsManagerV2.DEFAULT_SERVICE_NAME, 'v2', 'listSecrets');
|
|
466
480
|
var parameters = {
|
|
@@ -1512,13 +1526,20 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1512
1526
|
*
|
|
1513
1527
|
* **Usage:** If you want to list only the configurations that contain the string `text`, use
|
|
1514
1528
|
* `../configurations?search=text`.
|
|
1529
|
+
* @param {string[]} [params.secretTypes] - Filter configurations by secret types, iam_credentials, public_cert or
|
|
1530
|
+
* private_cert.
|
|
1531
|
+
*
|
|
1532
|
+
* You can apply multiple filters by using a comma-separated list of secret types.
|
|
1533
|
+
*
|
|
1534
|
+
* **Usage:** To retrieve a list of configurations that are associated with all secret types, use
|
|
1535
|
+
* `..?secret_types=iam_credentials,public_cert,private_cert`.
|
|
1515
1536
|
* @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
|
|
1516
1537
|
* @returns {Promise<SecretsManagerV2.Response<SecretsManagerV2.ConfigurationMetadataPaginatedCollection>>}
|
|
1517
1538
|
*/
|
|
1518
1539
|
SecretsManagerV2.prototype.listConfigurations = function (params) {
|
|
1519
1540
|
var _params = __assign({}, params);
|
|
1520
1541
|
var _requiredParams = [];
|
|
1521
|
-
var _validParams = ['offset', 'limit', 'sort', 'search', 'headers'];
|
|
1542
|
+
var _validParams = ['offset', 'limit', 'sort', 'search', 'secretTypes', 'headers'];
|
|
1522
1543
|
var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
|
|
1523
1544
|
if (_validationErrors) {
|
|
1524
1545
|
return Promise.reject(_validationErrors);
|
|
@@ -1528,6 +1549,7 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1528
1549
|
'limit': _params.limit,
|
|
1529
1550
|
'sort': _params.sort,
|
|
1530
1551
|
'search': _params.search,
|
|
1552
|
+
'secret_types': _params.secretTypes,
|
|
1531
1553
|
};
|
|
1532
1554
|
var sdkHeaders = (0, common_1.getSdkHeaders)(SecretsManagerV2.DEFAULT_SERVICE_NAME, 'v2', 'listConfigurations');
|
|
1533
1555
|
var parameters = {
|
|
@@ -1877,6 +1899,22 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1877
1899
|
* interfaces
|
|
1878
1900
|
************************/
|
|
1879
1901
|
(function (SecretsManagerV2) {
|
|
1902
|
+
/** Constants for the `listSecrets` operation. */
|
|
1903
|
+
var ListSecretsConstants;
|
|
1904
|
+
(function (ListSecretsConstants) {
|
|
1905
|
+
/** Filter secrets by types. You can apply multiple filters by using a comma-separated list of secret types. **Usage:** To retrieve a list of imported certificates and public certificates use `..?secret_types=imported_cert,public_cert`. */
|
|
1906
|
+
var SecretTypes;
|
|
1907
|
+
(function (SecretTypes) {
|
|
1908
|
+
SecretTypes["ARBITRARY"] = "arbitrary";
|
|
1909
|
+
SecretTypes["IAM_CREDENTIALS"] = "iam_credentials";
|
|
1910
|
+
SecretTypes["IMPORTED_CERT"] = "imported_cert";
|
|
1911
|
+
SecretTypes["KV"] = "kv";
|
|
1912
|
+
SecretTypes["PRIVATE_CERT"] = "private_cert";
|
|
1913
|
+
SecretTypes["PUBLIC_CERT"] = "public_cert";
|
|
1914
|
+
SecretTypes["SERVICE_CREDENTIALS"] = "service_credentials";
|
|
1915
|
+
SecretTypes["USERNAME_PASSWORD"] = "username_password";
|
|
1916
|
+
})(SecretTypes = ListSecretsConstants.SecretTypes || (ListSecretsConstants.SecretTypes = {}));
|
|
1917
|
+
})(ListSecretsConstants = SecretsManagerV2.ListSecretsConstants || (SecretsManagerV2.ListSecretsConstants = {}));
|
|
1880
1918
|
/** Constants for the `getSecretByNameType` operation. */
|
|
1881
1919
|
var GetSecretByNameTypeConstants;
|
|
1882
1920
|
(function (GetSecretByNameTypeConstants) {
|
|
@@ -1913,19 +1951,30 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1913
1951
|
Mode["REMOVE_PREVIOUS_AND_DELETE"] = "remove_previous_and_delete";
|
|
1914
1952
|
})(Mode = CreateSecretVersionLocksBulkConstants.Mode || (CreateSecretVersionLocksBulkConstants.Mode = {}));
|
|
1915
1953
|
})(CreateSecretVersionLocksBulkConstants = SecretsManagerV2.CreateSecretVersionLocksBulkConstants || (SecretsManagerV2.CreateSecretVersionLocksBulkConstants = {}));
|
|
1954
|
+
/** Constants for the `listConfigurations` operation. */
|
|
1955
|
+
var ListConfigurationsConstants;
|
|
1956
|
+
(function (ListConfigurationsConstants) {
|
|
1957
|
+
/** Filter configurations by secret types, iam_credentials, public_cert or private_cert. You can apply multiple filters by using a comma-separated list of secret types. **Usage:** To retrieve a list of configurations that are associated with all secret types, use `..?secret_types=iam_credentials,public_cert,private_cert`. */
|
|
1958
|
+
var SecretTypes;
|
|
1959
|
+
(function (SecretTypes) {
|
|
1960
|
+
SecretTypes["IAM_CREDENTIALS"] = "iam_credentials";
|
|
1961
|
+
SecretTypes["PRIVATE_CERT"] = "private_cert";
|
|
1962
|
+
SecretTypes["PUBLIC_CERT"] = "public_cert";
|
|
1963
|
+
})(SecretTypes = ListConfigurationsConstants.SecretTypes || (ListConfigurationsConstants.SecretTypes = {}));
|
|
1964
|
+
})(ListConfigurationsConstants = SecretsManagerV2.ListConfigurationsConstants || (SecretsManagerV2.ListConfigurationsConstants = {}));
|
|
1916
1965
|
/** Constants for the `getConfiguration` operation. */
|
|
1917
1966
|
var GetConfigurationConstants;
|
|
1918
1967
|
(function (GetConfigurationConstants) {
|
|
1919
1968
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1920
1969
|
var XSmAcceptConfigurationType;
|
|
1921
1970
|
(function (XSmAcceptConfigurationType) {
|
|
1922
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1923
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1924
1971
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
1925
|
-
XSmAcceptConfigurationType["
|
|
1972
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1973
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1926
1974
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
1927
1975
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
1928
1976
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
1977
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
1929
1978
|
})(XSmAcceptConfigurationType = GetConfigurationConstants.XSmAcceptConfigurationType || (GetConfigurationConstants.XSmAcceptConfigurationType = {}));
|
|
1930
1979
|
})(GetConfigurationConstants = SecretsManagerV2.GetConfigurationConstants || (SecretsManagerV2.GetConfigurationConstants = {}));
|
|
1931
1980
|
/** Constants for the `updateConfiguration` operation. */
|
|
@@ -1934,13 +1983,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1934
1983
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1935
1984
|
var XSmAcceptConfigurationType;
|
|
1936
1985
|
(function (XSmAcceptConfigurationType) {
|
|
1937
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1938
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1939
1986
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
1940
|
-
XSmAcceptConfigurationType["
|
|
1987
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1988
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1941
1989
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
1942
1990
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
1943
1991
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
1992
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
1944
1993
|
})(XSmAcceptConfigurationType = UpdateConfigurationConstants.XSmAcceptConfigurationType || (UpdateConfigurationConstants.XSmAcceptConfigurationType = {}));
|
|
1945
1994
|
})(UpdateConfigurationConstants = SecretsManagerV2.UpdateConfigurationConstants || (SecretsManagerV2.UpdateConfigurationConstants = {}));
|
|
1946
1995
|
/** Constants for the `deleteConfiguration` operation. */
|
|
@@ -1949,13 +1998,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1949
1998
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1950
1999
|
var XSmAcceptConfigurationType;
|
|
1951
2000
|
(function (XSmAcceptConfigurationType) {
|
|
1952
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1953
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1954
2001
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
1955
|
-
XSmAcceptConfigurationType["
|
|
2002
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2003
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1956
2004
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
1957
2005
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
1958
2006
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2007
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
1959
2008
|
})(XSmAcceptConfigurationType = DeleteConfigurationConstants.XSmAcceptConfigurationType || (DeleteConfigurationConstants.XSmAcceptConfigurationType = {}));
|
|
1960
2009
|
})(DeleteConfigurationConstants = SecretsManagerV2.DeleteConfigurationConstants || (SecretsManagerV2.DeleteConfigurationConstants = {}));
|
|
1961
2010
|
/** Constants for the `createConfigurationAction` operation. */
|
|
@@ -1964,13 +2013,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1964
2013
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1965
2014
|
var XSmAcceptConfigurationType;
|
|
1966
2015
|
(function (XSmAcceptConfigurationType) {
|
|
1967
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1968
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1969
2016
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
1970
|
-
XSmAcceptConfigurationType["
|
|
2017
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2018
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1971
2019
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
1972
2020
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
1973
2021
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2022
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
1974
2023
|
})(XSmAcceptConfigurationType = CreateConfigurationActionConstants.XSmAcceptConfigurationType || (CreateConfigurationActionConstants.XSmAcceptConfigurationType = {}));
|
|
1975
2024
|
})(CreateConfigurationActionConstants = SecretsManagerV2.CreateConfigurationActionConstants || (SecretsManagerV2.CreateConfigurationActionConstants = {}));
|
|
1976
2025
|
var CertificateIssuanceInfo;
|
|
@@ -2169,13 +2218,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2169
2218
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2170
2219
|
var ConfigType;
|
|
2171
2220
|
(function (ConfigType) {
|
|
2172
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2173
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2174
2221
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2175
|
-
ConfigType["
|
|
2222
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2223
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2176
2224
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2177
2225
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2178
2226
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2227
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2179
2228
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2180
2229
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2181
2230
|
var SecretType;
|
|
@@ -2198,13 +2247,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2198
2247
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2199
2248
|
var ConfigType;
|
|
2200
2249
|
(function (ConfigType) {
|
|
2201
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2202
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2203
2250
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2204
|
-
ConfigType["
|
|
2251
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2252
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2205
2253
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2206
2254
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2207
2255
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2256
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2208
2257
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2209
2258
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2210
2259
|
var SecretType;
|
|
@@ -2227,13 +2276,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2227
2276
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2228
2277
|
var ConfigType;
|
|
2229
2278
|
(function (ConfigType) {
|
|
2230
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2231
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2232
2279
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2233
|
-
ConfigType["
|
|
2280
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2281
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2234
2282
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2235
2283
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2236
2284
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2285
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2237
2286
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2238
2287
|
})(Constants = IAMCredentialsConfigurationPrototype.Constants || (IAMCredentialsConfigurationPrototype.Constants = {}));
|
|
2239
2288
|
})(IAMCredentialsConfigurationPrototype = SecretsManagerV2.IAMCredentialsConfigurationPrototype || (SecretsManagerV2.IAMCredentialsConfigurationPrototype = {}));
|
|
@@ -2829,13 +2878,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2829
2878
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2830
2879
|
var ConfigType;
|
|
2831
2880
|
(function (ConfigType) {
|
|
2832
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2833
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2834
2881
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2835
|
-
ConfigType["
|
|
2882
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2883
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2836
2884
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2837
2885
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2838
2886
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2887
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2839
2888
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2840
2889
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2841
2890
|
var SecretType;
|
|
@@ -2904,13 +2953,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2904
2953
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2905
2954
|
var ConfigType;
|
|
2906
2955
|
(function (ConfigType) {
|
|
2907
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2908
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2909
2956
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2910
|
-
ConfigType["
|
|
2957
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2958
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2911
2959
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2912
2960
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2913
2961
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2962
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2914
2963
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2915
2964
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2916
2965
|
var SecretType;
|
|
@@ -2955,13 +3004,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2955
3004
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2956
3005
|
var ConfigType;
|
|
2957
3006
|
(function (ConfigType) {
|
|
2958
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2959
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2960
3007
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2961
|
-
ConfigType["
|
|
3008
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3009
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2962
3010
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2963
3011
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2964
3012
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3013
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2965
3014
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2966
3015
|
/** The signing method to use with this certificate authority to generate private certificates. You can choose between internal or externally signed options. For more information, see the [docs](https://cloud.ibm.com/docs/secrets-manager?topic=secrets-manager-intermediate-certificate-authorities). */
|
|
2967
3016
|
var SigningMethod;
|
|
@@ -2996,13 +3045,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2996
3045
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2997
3046
|
var ConfigType;
|
|
2998
3047
|
(function (ConfigType) {
|
|
2999
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3000
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3001
3048
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3002
|
-
ConfigType["
|
|
3049
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3050
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3003
3051
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3004
3052
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3005
3053
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3054
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3006
3055
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3007
3056
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3008
3057
|
var SecretType;
|
|
@@ -3053,13 +3102,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3053
3102
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3054
3103
|
var ConfigType;
|
|
3055
3104
|
(function (ConfigType) {
|
|
3056
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3057
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3058
3105
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3059
|
-
ConfigType["
|
|
3106
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3107
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3060
3108
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3061
3109
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3062
3110
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3111
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3063
3112
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3064
3113
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3065
3114
|
var SecretType;
|
|
@@ -3098,13 +3147,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3098
3147
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3099
3148
|
var ConfigType;
|
|
3100
3149
|
(function (ConfigType) {
|
|
3101
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3102
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3103
3150
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3104
|
-
ConfigType["
|
|
3151
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3152
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3105
3153
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3106
3154
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3107
3155
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3156
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3108
3157
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3109
3158
|
/** The format of the returned data. */
|
|
3110
3159
|
var Format;
|
|
@@ -3133,13 +3182,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3133
3182
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3134
3183
|
var ConfigType;
|
|
3135
3184
|
(function (ConfigType) {
|
|
3136
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3137
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3138
3185
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3139
|
-
ConfigType["
|
|
3186
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3187
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3140
3188
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3141
3189
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3142
3190
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3191
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3143
3192
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3144
3193
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3145
3194
|
var SecretType;
|
|
@@ -3168,13 +3217,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3168
3217
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3169
3218
|
var ConfigType;
|
|
3170
3219
|
(function (ConfigType) {
|
|
3171
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3172
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3173
3220
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3174
|
-
ConfigType["
|
|
3221
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3222
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3175
3223
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3176
3224
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3177
3225
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3226
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3178
3227
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3179
3228
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3180
3229
|
var SecretType;
|
|
@@ -3209,13 +3258,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3209
3258
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3210
3259
|
var ConfigType;
|
|
3211
3260
|
(function (ConfigType) {
|
|
3212
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3213
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3214
3261
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3215
|
-
ConfigType["
|
|
3262
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3263
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3216
3264
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3217
3265
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3218
3266
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3267
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3219
3268
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3220
3269
|
/** The type of private key to generate. */
|
|
3221
3270
|
var KeyType;
|
|
@@ -3225,6 +3274,17 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3225
3274
|
})(KeyType = Constants.KeyType || (Constants.KeyType = {}));
|
|
3226
3275
|
})(Constants = PrivateCertificateConfigurationTemplatePrototype.Constants || (PrivateCertificateConfigurationTemplatePrototype.Constants = {}));
|
|
3227
3276
|
})(PrivateCertificateConfigurationTemplatePrototype = SecretsManagerV2.PrivateCertificateConfigurationTemplatePrototype || (SecretsManagerV2.PrivateCertificateConfigurationTemplatePrototype = {}));
|
|
3277
|
+
var PrivateCertificateCryptoProviderHPCS;
|
|
3278
|
+
(function (PrivateCertificateCryptoProviderHPCS) {
|
|
3279
|
+
var Constants;
|
|
3280
|
+
(function (Constants) {
|
|
3281
|
+
/** The type of cryptographic provider. */
|
|
3282
|
+
var Type;
|
|
3283
|
+
(function (Type) {
|
|
3284
|
+
Type["HYPER_PROTECT_CRYPTO_SERVICES"] = "hyper_protect_crypto_services";
|
|
3285
|
+
})(Type = Constants.Type || (Constants.Type = {}));
|
|
3286
|
+
})(Constants = PrivateCertificateCryptoProviderHPCS.Constants || (PrivateCertificateCryptoProviderHPCS.Constants = {}));
|
|
3287
|
+
})(PrivateCertificateCryptoProviderHPCS = SecretsManagerV2.PrivateCertificateCryptoProviderHPCS || (SecretsManagerV2.PrivateCertificateCryptoProviderHPCS = {}));
|
|
3228
3288
|
var PrivateCertificateMetadata;
|
|
3229
3289
|
(function (PrivateCertificateMetadata) {
|
|
3230
3290
|
var Constants;
|
|
@@ -3410,13 +3470,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3410
3470
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3411
3471
|
var ConfigType;
|
|
3412
3472
|
(function (ConfigType) {
|
|
3413
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3414
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3415
3473
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3416
|
-
ConfigType["
|
|
3474
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3475
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3417
3476
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3418
3477
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3419
3478
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3479
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3420
3480
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3421
3481
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3422
3482
|
var SecretType;
|
|
@@ -3445,13 +3505,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3445
3505
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3446
3506
|
var ConfigType;
|
|
3447
3507
|
(function (ConfigType) {
|
|
3448
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3449
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3450
3508
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3451
|
-
ConfigType["
|
|
3509
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3510
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3452
3511
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3453
3512
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3454
3513
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3514
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3455
3515
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3456
3516
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3457
3517
|
var SecretType;
|
|
@@ -3492,13 +3552,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3492
3552
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3493
3553
|
var ConfigType;
|
|
3494
3554
|
(function (ConfigType) {
|
|
3495
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3496
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3497
3555
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3498
|
-
ConfigType["
|
|
3556
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3557
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3499
3558
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3500
3559
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3501
3560
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3561
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3502
3562
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3503
3563
|
/** The configuration of the Let's Encrypt CA environment. */
|
|
3504
3564
|
var LetsEncryptEnvironment;
|
|
@@ -3515,13 +3575,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3515
3575
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3516
3576
|
var ConfigType;
|
|
3517
3577
|
(function (ConfigType) {
|
|
3518
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3519
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3520
3578
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3521
|
-
ConfigType["
|
|
3579
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3580
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3522
3581
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3523
3582
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3524
3583
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3584
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3525
3585
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3526
3586
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3527
3587
|
var SecretType;
|
|
@@ -3544,13 +3604,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3544
3604
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3545
3605
|
var ConfigType;
|
|
3546
3606
|
(function (ConfigType) {
|
|
3547
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3548
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3549
3607
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3550
|
-
ConfigType["
|
|
3608
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3609
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3551
3610
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3552
3611
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3553
3612
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3613
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3554
3614
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3555
3615
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3556
3616
|
var SecretType;
|
|
@@ -3573,13 +3633,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3573
3633
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3574
3634
|
var ConfigType;
|
|
3575
3635
|
(function (ConfigType) {
|
|
3576
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3577
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3578
3636
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3579
|
-
ConfigType["
|
|
3637
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3638
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3580
3639
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3581
3640
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3582
3641
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3642
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3583
3643
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3584
3644
|
})(Constants = PublicCertificateConfigurationDNSClassicInfrastructurePrototype.Constants || (PublicCertificateConfigurationDNSClassicInfrastructurePrototype.Constants = {}));
|
|
3585
3645
|
})(PublicCertificateConfigurationDNSClassicInfrastructurePrototype = SecretsManagerV2.PublicCertificateConfigurationDNSClassicInfrastructurePrototype || (SecretsManagerV2.PublicCertificateConfigurationDNSClassicInfrastructurePrototype = {}));
|
|
@@ -3590,13 +3650,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3590
3650
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3591
3651
|
var ConfigType;
|
|
3592
3652
|
(function (ConfigType) {
|
|
3593
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3594
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3595
3653
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3596
|
-
ConfigType["
|
|
3654
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3655
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3597
3656
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3598
3657
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3599
3658
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3659
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3600
3660
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3601
3661
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3602
3662
|
var SecretType;
|
|
@@ -3619,13 +3679,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3619
3679
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3620
3680
|
var ConfigType;
|
|
3621
3681
|
(function (ConfigType) {
|
|
3622
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3623
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3624
3682
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3625
|
-
ConfigType["
|
|
3683
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3684
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3626
3685
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3627
3686
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3628
3687
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3688
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3629
3689
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3630
3690
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3631
3691
|
var SecretType;
|
|
@@ -3648,13 +3708,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3648
3708
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3649
3709
|
var ConfigType;
|
|
3650
3710
|
(function (ConfigType) {
|
|
3651
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3652
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3653
3711
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3654
|
-
ConfigType["
|
|
3712
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3713
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3655
3714
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3656
3715
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3657
3716
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3717
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3658
3718
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3659
3719
|
})(Constants = PublicCertificateConfigurationDNSCloudInternetServicesPrototype.Constants || (PublicCertificateConfigurationDNSCloudInternetServicesPrototype.Constants = {}));
|
|
3660
3720
|
})(PublicCertificateConfigurationDNSCloudInternetServicesPrototype = SecretsManagerV2.PublicCertificateConfigurationDNSCloudInternetServicesPrototype || (SecretsManagerV2.PublicCertificateConfigurationDNSCloudInternetServicesPrototype = {}));
|