@pulumi/fastly 8.5.1 → 8.5.2
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/getTlsSubscription.d.ts +4 -0
- package/getTlsSubscription.js.map +1 -1
- package/package.json +1 -1
- package/tlsMutualAuthentication.d.ts +27 -3
- package/tlsMutualAuthentication.js +11 -0
- package/tlsMutualAuthentication.js.map +1 -1
- package/types/input.d.ts +19 -19
- package/types/output.d.ts +19 -19
package/getTlsSubscription.d.ts
CHANGED
|
@@ -45,6 +45,10 @@ export interface GetTlsSubscriptionResult {
|
|
|
45
45
|
* The entity that issues and certifies the TLS certificates for the subscription.
|
|
46
46
|
*/
|
|
47
47
|
readonly certificateAuthority: string;
|
|
48
|
+
/**
|
|
49
|
+
* List of certificate IDs associated with the Subscription.
|
|
50
|
+
*/
|
|
51
|
+
readonly certificateIds: string[];
|
|
48
52
|
/**
|
|
49
53
|
* The common name associated with the subscription generated by Fastly TLS.
|
|
50
54
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsSubscription.js","sourceRoot":"","sources":["../getTlsSubscription.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gDAUC;
|
|
1
|
+
{"version":3,"file":"getTlsSubscription.js","sourceRoot":"","sources":["../getTlsSubscription.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gDAUC;AAiED;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,wBAAwB,CAAC,IAAmC,EAAE,IAA2B;IACrG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
|
package/package.json
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* The Mutual TLS API allows for client-to-server authentication using client-side X.509 authentication.
|
|
4
|
+
*
|
|
5
|
+
* The main Mutual Authentication object represents the certificate bundle and other configurations which support Mutual TLS for your domains.
|
|
6
|
+
*
|
|
7
|
+
* Mutual TLS can be added to existing TLS activations to allow for client-to-server authentication. In order to use mutual TLS, you must already have active server-side TLS using either custom certificates or an enabled Fastly-managed subscription.
|
|
8
|
+
*
|
|
9
|
+
* The examples below demonstrate how to use Mutual Authentication along with a TLS Subscription. Refer to the `fastly.TlsSubscription` resource documentation for a deeper explanation of that code.
|
|
10
|
+
*/
|
|
2
11
|
export declare class TlsMutualAuthentication extends pulumi.CustomResource {
|
|
3
12
|
/**
|
|
4
13
|
* Get an existing TlsMutualAuthentication resource's state with the given name, ID, and optional extra
|
|
@@ -15,6 +24,10 @@ export declare class TlsMutualAuthentication extends pulumi.CustomResource {
|
|
|
15
24
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
16
25
|
*/
|
|
17
26
|
static isInstance(obj: any): obj is TlsMutualAuthentication;
|
|
27
|
+
/**
|
|
28
|
+
* List of TLS Activation IDs
|
|
29
|
+
*/
|
|
30
|
+
readonly activationIds: pulumi.Output<string[] | undefined>;
|
|
18
31
|
/**
|
|
19
32
|
* One or more certificates. Enter each individual certificate blob on a new line. Must be PEM-formatted.
|
|
20
33
|
*/
|
|
@@ -28,7 +41,8 @@ export declare class TlsMutualAuthentication extends pulumi.CustomResource {
|
|
|
28
41
|
*/
|
|
29
42
|
readonly enforced: pulumi.Output<boolean>;
|
|
30
43
|
/**
|
|
31
|
-
*
|
|
44
|
+
* A comma-separated list used by the Terraform provider during a state refresh to return more data related to your mutual
|
|
45
|
+
* authentication from the Fastly API (permitted values: `tls_activations`).
|
|
32
46
|
*/
|
|
33
47
|
readonly include: pulumi.Output<string | undefined>;
|
|
34
48
|
/**
|
|
@@ -56,6 +70,10 @@ export declare class TlsMutualAuthentication extends pulumi.CustomResource {
|
|
|
56
70
|
* Input properties used for looking up and filtering TlsMutualAuthentication resources.
|
|
57
71
|
*/
|
|
58
72
|
export interface TlsMutualAuthenticationState {
|
|
73
|
+
/**
|
|
74
|
+
* List of TLS Activation IDs
|
|
75
|
+
*/
|
|
76
|
+
activationIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
59
77
|
/**
|
|
60
78
|
* One or more certificates. Enter each individual certificate blob on a new line. Must be PEM-formatted.
|
|
61
79
|
*/
|
|
@@ -69,7 +87,8 @@ export interface TlsMutualAuthenticationState {
|
|
|
69
87
|
*/
|
|
70
88
|
enforced?: pulumi.Input<boolean>;
|
|
71
89
|
/**
|
|
72
|
-
*
|
|
90
|
+
* A comma-separated list used by the Terraform provider during a state refresh to return more data related to your mutual
|
|
91
|
+
* authentication from the Fastly API (permitted values: `tls_activations`).
|
|
73
92
|
*/
|
|
74
93
|
include?: pulumi.Input<string>;
|
|
75
94
|
/**
|
|
@@ -89,6 +108,10 @@ export interface TlsMutualAuthenticationState {
|
|
|
89
108
|
* The set of arguments for constructing a TlsMutualAuthentication resource.
|
|
90
109
|
*/
|
|
91
110
|
export interface TlsMutualAuthenticationArgs {
|
|
111
|
+
/**
|
|
112
|
+
* List of TLS Activation IDs
|
|
113
|
+
*/
|
|
114
|
+
activationIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
92
115
|
/**
|
|
93
116
|
* One or more certificates. Enter each individual certificate blob on a new line. Must be PEM-formatted.
|
|
94
117
|
*/
|
|
@@ -98,7 +121,8 @@ export interface TlsMutualAuthenticationArgs {
|
|
|
98
121
|
*/
|
|
99
122
|
enforced?: pulumi.Input<boolean>;
|
|
100
123
|
/**
|
|
101
|
-
*
|
|
124
|
+
* A comma-separated list used by the Terraform provider during a state refresh to return more data related to your mutual
|
|
125
|
+
* authentication from the Fastly API (permitted values: `tls_activations`).
|
|
102
126
|
*/
|
|
103
127
|
include?: pulumi.Input<string>;
|
|
104
128
|
/**
|
|
@@ -5,6 +5,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.TlsMutualAuthentication = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The Mutual TLS API allows for client-to-server authentication using client-side X.509 authentication.
|
|
10
|
+
*
|
|
11
|
+
* The main Mutual Authentication object represents the certificate bundle and other configurations which support Mutual TLS for your domains.
|
|
12
|
+
*
|
|
13
|
+
* Mutual TLS can be added to existing TLS activations to allow for client-to-server authentication. In order to use mutual TLS, you must already have active server-side TLS using either custom certificates or an enabled Fastly-managed subscription.
|
|
14
|
+
*
|
|
15
|
+
* The examples below demonstrate how to use Mutual Authentication along with a TLS Subscription. Refer to the `fastly.TlsSubscription` resource documentation for a deeper explanation of that code.
|
|
16
|
+
*/
|
|
8
17
|
class TlsMutualAuthentication extends pulumi.CustomResource {
|
|
9
18
|
/**
|
|
10
19
|
* Get an existing TlsMutualAuthentication resource's state with the given name, ID, and optional extra
|
|
@@ -33,6 +42,7 @@ class TlsMutualAuthentication extends pulumi.CustomResource {
|
|
|
33
42
|
opts = opts || {};
|
|
34
43
|
if (opts.id) {
|
|
35
44
|
const state = argsOrState;
|
|
45
|
+
resourceInputs["activationIds"] = state ? state.activationIds : undefined;
|
|
36
46
|
resourceInputs["certBundle"] = state ? state.certBundle : undefined;
|
|
37
47
|
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
38
48
|
resourceInputs["enforced"] = state ? state.enforced : undefined;
|
|
@@ -46,6 +56,7 @@ class TlsMutualAuthentication extends pulumi.CustomResource {
|
|
|
46
56
|
if ((!args || args.certBundle === undefined) && !opts.urn) {
|
|
47
57
|
throw new Error("Missing required property 'certBundle'");
|
|
48
58
|
}
|
|
59
|
+
resourceInputs["activationIds"] = args ? args.activationIds : undefined;
|
|
49
60
|
resourceInputs["certBundle"] = args ? args.certBundle : undefined;
|
|
50
61
|
resourceInputs["enforced"] = args ? args.enforced : undefined;
|
|
51
62
|
resourceInputs["include"] = args ? args.include : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tlsMutualAuthentication.js","sourceRoot":"","sources":["../tlsMutualAuthentication.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoC,EAAE,IAAmC;QAClI,OAAO,IAAI,uBAAuB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,uBAAuB,CAAC,YAAY,CAAC;IACxE,CAAC;
|
|
1
|
+
{"version":3,"file":"tlsMutualAuthentication.js","sourceRoot":"","sources":["../tlsMutualAuthentication.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -249,7 +249,7 @@ export interface ServiceComputeLoggingBlobstorage {
|
|
|
249
249
|
*/
|
|
250
250
|
sasToken: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
252
|
-
* The `strftime` specified timestamp formatting (default
|
|
252
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
253
253
|
*/
|
|
254
254
|
timestampFormat?: pulumi.Input<string>;
|
|
255
255
|
}
|
|
@@ -295,7 +295,7 @@ export interface ServiceComputeLoggingCloudfile {
|
|
|
295
295
|
*/
|
|
296
296
|
region?: pulumi.Input<string>;
|
|
297
297
|
/**
|
|
298
|
-
* The `strftime` specified timestamp formatting (default
|
|
298
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
299
299
|
*/
|
|
300
300
|
timestampFormat?: pulumi.Input<string>;
|
|
301
301
|
/**
|
|
@@ -363,7 +363,7 @@ export interface ServiceComputeLoggingDigitalocean {
|
|
|
363
363
|
*/
|
|
364
364
|
secretKey: pulumi.Input<string>;
|
|
365
365
|
/**
|
|
366
|
-
* The `strftime` specified timestamp formatting (default
|
|
366
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
367
367
|
*/
|
|
368
368
|
timestampFormat?: pulumi.Input<string>;
|
|
369
369
|
}
|
|
@@ -459,7 +459,7 @@ export interface ServiceComputeLoggingFtp {
|
|
|
459
459
|
*/
|
|
460
460
|
publicKey?: pulumi.Input<string>;
|
|
461
461
|
/**
|
|
462
|
-
* The `strftime` specified timestamp formatting (default
|
|
462
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
463
463
|
*/
|
|
464
464
|
timestampFormat?: pulumi.Input<string>;
|
|
465
465
|
/**
|
|
@@ -509,7 +509,7 @@ export interface ServiceComputeLoggingGc {
|
|
|
509
509
|
*/
|
|
510
510
|
secretKey?: pulumi.Input<string>;
|
|
511
511
|
/**
|
|
512
|
-
* The `strftime` specified timestamp formatting (default
|
|
512
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
513
513
|
*/
|
|
514
514
|
timestampFormat?: pulumi.Input<string>;
|
|
515
515
|
/**
|
|
@@ -811,7 +811,7 @@ export interface ServiceComputeLoggingOpenstack {
|
|
|
811
811
|
*/
|
|
812
812
|
publicKey?: pulumi.Input<string>;
|
|
813
813
|
/**
|
|
814
|
-
* The `strftime` specified timestamp formatting (default
|
|
814
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
815
815
|
*/
|
|
816
816
|
timestampFormat?: pulumi.Input<string>;
|
|
817
817
|
/**
|
|
@@ -907,7 +907,7 @@ export interface ServiceComputeLoggingS3 {
|
|
|
907
907
|
*/
|
|
908
908
|
serverSideEncryptionKmsKeyId?: pulumi.Input<string>;
|
|
909
909
|
/**
|
|
910
|
-
* The `strftime` specified timestamp formatting (default
|
|
910
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
911
911
|
*/
|
|
912
912
|
timestampFormat?: pulumi.Input<string>;
|
|
913
913
|
}
|
|
@@ -979,7 +979,7 @@ export interface ServiceComputeLoggingSftp {
|
|
|
979
979
|
*/
|
|
980
980
|
sshKnownHosts: pulumi.Input<string>;
|
|
981
981
|
/**
|
|
982
|
-
* The `strftime` specified timestamp formatting (default
|
|
982
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
983
983
|
*/
|
|
984
984
|
timestampFormat?: pulumi.Input<string>;
|
|
985
985
|
/**
|
|
@@ -1466,7 +1466,7 @@ export interface ServiceVclHealthcheck {
|
|
|
1466
1466
|
*/
|
|
1467
1467
|
threshold?: pulumi.Input<number>;
|
|
1468
1468
|
/**
|
|
1469
|
-
* Timeout in milliseconds. Default `
|
|
1469
|
+
* Timeout in milliseconds. Default `5000`
|
|
1470
1470
|
*/
|
|
1471
1471
|
timeout?: pulumi.Input<number>;
|
|
1472
1472
|
/**
|
|
@@ -1538,7 +1538,7 @@ export interface ServiceVclLoggingBlobstorage {
|
|
|
1538
1538
|
*/
|
|
1539
1539
|
fileMaxBytes?: pulumi.Input<number>;
|
|
1540
1540
|
/**
|
|
1541
|
-
* Apache-style string or VCL variables to use for log formatting (default:
|
|
1541
|
+
* Apache-style string or VCL variables to use for log formatting (default: `%h %l %u %t "%r" %>s %b`)
|
|
1542
1542
|
*/
|
|
1543
1543
|
format?: pulumi.Input<string>;
|
|
1544
1544
|
/**
|
|
@@ -1582,7 +1582,7 @@ export interface ServiceVclLoggingBlobstorage {
|
|
|
1582
1582
|
*/
|
|
1583
1583
|
sasToken: pulumi.Input<string>;
|
|
1584
1584
|
/**
|
|
1585
|
-
* The `strftime` specified timestamp formatting (default
|
|
1585
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1586
1586
|
*/
|
|
1587
1587
|
timestampFormat?: pulumi.Input<string>;
|
|
1588
1588
|
}
|
|
@@ -1644,7 +1644,7 @@ export interface ServiceVclLoggingCloudfile {
|
|
|
1644
1644
|
*/
|
|
1645
1645
|
responseCondition?: pulumi.Input<string>;
|
|
1646
1646
|
/**
|
|
1647
|
-
* The `strftime` specified timestamp formatting (default
|
|
1647
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1648
1648
|
*/
|
|
1649
1649
|
timestampFormat?: pulumi.Input<string>;
|
|
1650
1650
|
/**
|
|
@@ -1744,7 +1744,7 @@ export interface ServiceVclLoggingDigitalocean {
|
|
|
1744
1744
|
*/
|
|
1745
1745
|
secretKey: pulumi.Input<string>;
|
|
1746
1746
|
/**
|
|
1747
|
-
* The `strftime` specified timestamp formatting (default
|
|
1747
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1748
1748
|
*/
|
|
1749
1749
|
timestampFormat?: pulumi.Input<string>;
|
|
1750
1750
|
}
|
|
@@ -1872,7 +1872,7 @@ export interface ServiceVclLoggingFtp {
|
|
|
1872
1872
|
*/
|
|
1873
1873
|
responseCondition?: pulumi.Input<string>;
|
|
1874
1874
|
/**
|
|
1875
|
-
* The `strftime` specified timestamp formatting (default
|
|
1875
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1876
1876
|
*/
|
|
1877
1877
|
timestampFormat?: pulumi.Input<string>;
|
|
1878
1878
|
/**
|
|
@@ -1938,7 +1938,7 @@ export interface ServiceVclLoggingGc {
|
|
|
1938
1938
|
*/
|
|
1939
1939
|
secretKey?: pulumi.Input<string>;
|
|
1940
1940
|
/**
|
|
1941
|
-
* The `strftime` specified timestamp formatting (default
|
|
1941
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1942
1942
|
*/
|
|
1943
1943
|
timestampFormat?: pulumi.Input<string>;
|
|
1944
1944
|
/**
|
|
@@ -2450,7 +2450,7 @@ export interface ServiceVclLoggingOpenstack {
|
|
|
2450
2450
|
*/
|
|
2451
2451
|
responseCondition?: pulumi.Input<string>;
|
|
2452
2452
|
/**
|
|
2453
|
-
* The `strftime` specified timestamp formatting (default
|
|
2453
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
2454
2454
|
*/
|
|
2455
2455
|
timestampFormat?: pulumi.Input<string>;
|
|
2456
2456
|
/**
|
|
@@ -2578,7 +2578,7 @@ export interface ServiceVclLoggingS3 {
|
|
|
2578
2578
|
*/
|
|
2579
2579
|
serverSideEncryptionKmsKeyId?: pulumi.Input<string>;
|
|
2580
2580
|
/**
|
|
2581
|
-
* The `strftime` specified timestamp formatting (default
|
|
2581
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
2582
2582
|
*/
|
|
2583
2583
|
timestampFormat?: pulumi.Input<string>;
|
|
2584
2584
|
}
|
|
@@ -2682,7 +2682,7 @@ export interface ServiceVclLoggingSftp {
|
|
|
2682
2682
|
*/
|
|
2683
2683
|
sshKnownHosts: pulumi.Input<string>;
|
|
2684
2684
|
/**
|
|
2685
|
-
* The `strftime` specified timestamp formatting (default
|
|
2685
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
2686
2686
|
*/
|
|
2687
2687
|
timestampFormat?: pulumi.Input<string>;
|
|
2688
2688
|
/**
|
|
@@ -2692,7 +2692,7 @@ export interface ServiceVclLoggingSftp {
|
|
|
2692
2692
|
}
|
|
2693
2693
|
export interface ServiceVclLoggingSplunk {
|
|
2694
2694
|
/**
|
|
2695
|
-
* Apache-style string or VCL variables to use for log formatting (default:
|
|
2695
|
+
* Apache-style string or VCL variables to use for log formatting (default: `%h %l %u %t "%r" %>s %b`)
|
|
2696
2696
|
*/
|
|
2697
2697
|
format?: pulumi.Input<string>;
|
|
2698
2698
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -372,7 +372,7 @@ export interface ServiceComputeLoggingBlobstorage {
|
|
|
372
372
|
*/
|
|
373
373
|
sasToken: string;
|
|
374
374
|
/**
|
|
375
|
-
* The `strftime` specified timestamp formatting (default
|
|
375
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
376
376
|
*/
|
|
377
377
|
timestampFormat?: string;
|
|
378
378
|
}
|
|
@@ -418,7 +418,7 @@ export interface ServiceComputeLoggingCloudfile {
|
|
|
418
418
|
*/
|
|
419
419
|
region?: string;
|
|
420
420
|
/**
|
|
421
|
-
* The `strftime` specified timestamp formatting (default
|
|
421
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
422
422
|
*/
|
|
423
423
|
timestampFormat?: string;
|
|
424
424
|
/**
|
|
@@ -486,7 +486,7 @@ export interface ServiceComputeLoggingDigitalocean {
|
|
|
486
486
|
*/
|
|
487
487
|
secretKey: string;
|
|
488
488
|
/**
|
|
489
|
-
* The `strftime` specified timestamp formatting (default
|
|
489
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
490
490
|
*/
|
|
491
491
|
timestampFormat?: string;
|
|
492
492
|
}
|
|
@@ -582,7 +582,7 @@ export interface ServiceComputeLoggingFtp {
|
|
|
582
582
|
*/
|
|
583
583
|
publicKey?: string;
|
|
584
584
|
/**
|
|
585
|
-
* The `strftime` specified timestamp formatting (default
|
|
585
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
586
586
|
*/
|
|
587
587
|
timestampFormat?: string;
|
|
588
588
|
/**
|
|
@@ -632,7 +632,7 @@ export interface ServiceComputeLoggingGc {
|
|
|
632
632
|
*/
|
|
633
633
|
secretKey?: string;
|
|
634
634
|
/**
|
|
635
|
-
* The `strftime` specified timestamp formatting (default
|
|
635
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
636
636
|
*/
|
|
637
637
|
timestampFormat?: string;
|
|
638
638
|
/**
|
|
@@ -934,7 +934,7 @@ export interface ServiceComputeLoggingOpenstack {
|
|
|
934
934
|
*/
|
|
935
935
|
publicKey?: string;
|
|
936
936
|
/**
|
|
937
|
-
* The `strftime` specified timestamp formatting (default
|
|
937
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
938
938
|
*/
|
|
939
939
|
timestampFormat?: string;
|
|
940
940
|
/**
|
|
@@ -1030,7 +1030,7 @@ export interface ServiceComputeLoggingS3 {
|
|
|
1030
1030
|
*/
|
|
1031
1031
|
serverSideEncryptionKmsKeyId?: string;
|
|
1032
1032
|
/**
|
|
1033
|
-
* The `strftime` specified timestamp formatting (default
|
|
1033
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1034
1034
|
*/
|
|
1035
1035
|
timestampFormat?: string;
|
|
1036
1036
|
}
|
|
@@ -1102,7 +1102,7 @@ export interface ServiceComputeLoggingSftp {
|
|
|
1102
1102
|
*/
|
|
1103
1103
|
sshKnownHosts: string;
|
|
1104
1104
|
/**
|
|
1105
|
-
* The `strftime` specified timestamp formatting (default
|
|
1105
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1106
1106
|
*/
|
|
1107
1107
|
timestampFormat?: string;
|
|
1108
1108
|
/**
|
|
@@ -1589,7 +1589,7 @@ export interface ServiceVclHealthcheck {
|
|
|
1589
1589
|
*/
|
|
1590
1590
|
threshold?: number;
|
|
1591
1591
|
/**
|
|
1592
|
-
* Timeout in milliseconds. Default `
|
|
1592
|
+
* Timeout in milliseconds. Default `5000`
|
|
1593
1593
|
*/
|
|
1594
1594
|
timeout?: number;
|
|
1595
1595
|
/**
|
|
@@ -1661,7 +1661,7 @@ export interface ServiceVclLoggingBlobstorage {
|
|
|
1661
1661
|
*/
|
|
1662
1662
|
fileMaxBytes?: number;
|
|
1663
1663
|
/**
|
|
1664
|
-
* Apache-style string or VCL variables to use for log formatting (default:
|
|
1664
|
+
* Apache-style string or VCL variables to use for log formatting (default: `%h %l %u %t "%r" %>s %b`)
|
|
1665
1665
|
*/
|
|
1666
1666
|
format?: string;
|
|
1667
1667
|
/**
|
|
@@ -1705,7 +1705,7 @@ export interface ServiceVclLoggingBlobstorage {
|
|
|
1705
1705
|
*/
|
|
1706
1706
|
sasToken: string;
|
|
1707
1707
|
/**
|
|
1708
|
-
* The `strftime` specified timestamp formatting (default
|
|
1708
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1709
1709
|
*/
|
|
1710
1710
|
timestampFormat?: string;
|
|
1711
1711
|
}
|
|
@@ -1767,7 +1767,7 @@ export interface ServiceVclLoggingCloudfile {
|
|
|
1767
1767
|
*/
|
|
1768
1768
|
responseCondition?: string;
|
|
1769
1769
|
/**
|
|
1770
|
-
* The `strftime` specified timestamp formatting (default
|
|
1770
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1771
1771
|
*/
|
|
1772
1772
|
timestampFormat?: string;
|
|
1773
1773
|
/**
|
|
@@ -1867,7 +1867,7 @@ export interface ServiceVclLoggingDigitalocean {
|
|
|
1867
1867
|
*/
|
|
1868
1868
|
secretKey: string;
|
|
1869
1869
|
/**
|
|
1870
|
-
* The `strftime` specified timestamp formatting (default
|
|
1870
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1871
1871
|
*/
|
|
1872
1872
|
timestampFormat?: string;
|
|
1873
1873
|
}
|
|
@@ -1995,7 +1995,7 @@ export interface ServiceVclLoggingFtp {
|
|
|
1995
1995
|
*/
|
|
1996
1996
|
responseCondition?: string;
|
|
1997
1997
|
/**
|
|
1998
|
-
* The `strftime` specified timestamp formatting (default
|
|
1998
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
1999
1999
|
*/
|
|
2000
2000
|
timestampFormat?: string;
|
|
2001
2001
|
/**
|
|
@@ -2061,7 +2061,7 @@ export interface ServiceVclLoggingGc {
|
|
|
2061
2061
|
*/
|
|
2062
2062
|
secretKey?: string;
|
|
2063
2063
|
/**
|
|
2064
|
-
* The `strftime` specified timestamp formatting (default
|
|
2064
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
2065
2065
|
*/
|
|
2066
2066
|
timestampFormat?: string;
|
|
2067
2067
|
/**
|
|
@@ -2573,7 +2573,7 @@ export interface ServiceVclLoggingOpenstack {
|
|
|
2573
2573
|
*/
|
|
2574
2574
|
responseCondition?: string;
|
|
2575
2575
|
/**
|
|
2576
|
-
* The `strftime` specified timestamp formatting (default
|
|
2576
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
2577
2577
|
*/
|
|
2578
2578
|
timestampFormat?: string;
|
|
2579
2579
|
/**
|
|
@@ -2701,7 +2701,7 @@ export interface ServiceVclLoggingS3 {
|
|
|
2701
2701
|
*/
|
|
2702
2702
|
serverSideEncryptionKmsKeyId?: string;
|
|
2703
2703
|
/**
|
|
2704
|
-
* The `strftime` specified timestamp formatting (default
|
|
2704
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
2705
2705
|
*/
|
|
2706
2706
|
timestampFormat?: string;
|
|
2707
2707
|
}
|
|
@@ -2805,7 +2805,7 @@ export interface ServiceVclLoggingSftp {
|
|
|
2805
2805
|
*/
|
|
2806
2806
|
sshKnownHosts: string;
|
|
2807
2807
|
/**
|
|
2808
|
-
* The `strftime` specified timestamp formatting (default
|
|
2808
|
+
* The `strftime` specified timestamp formatting (default `%Y-%m-%dT%H:%M:%S.000`)
|
|
2809
2809
|
*/
|
|
2810
2810
|
timestampFormat?: string;
|
|
2811
2811
|
/**
|
|
@@ -2815,7 +2815,7 @@ export interface ServiceVclLoggingSftp {
|
|
|
2815
2815
|
}
|
|
2816
2816
|
export interface ServiceVclLoggingSplunk {
|
|
2817
2817
|
/**
|
|
2818
|
-
* Apache-style string or VCL variables to use for log formatting (default:
|
|
2818
|
+
* Apache-style string or VCL variables to use for log formatting (default: `%h %l %u %t "%r" %>s %b`)
|
|
2819
2819
|
*/
|
|
2820
2820
|
format?: string;
|
|
2821
2821
|
/**
|