@volcengine/pulumi-volcenginecc 0.0.32 → 0.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/alb/acl.d.ts +20 -21
  2. package/alb/acl.js +2 -2
  3. package/alb/acl.js.map +1 -1
  4. package/alb/getAcl.d.ts +11 -11
  5. package/alb/getListener.d.ts +20 -20
  6. package/alb/getServerGroup.d.ts +9 -9
  7. package/alb/listener.d.ts +52 -52
  8. package/alb/listener.js +1 -1
  9. package/alb/serverGroup.d.ts +24 -24
  10. package/alb/serverGroup.js +1 -1
  11. package/cr/endpointAclPolicy.d.ts +107 -0
  12. package/cr/endpointAclPolicy.js +84 -0
  13. package/cr/endpointAclPolicy.js.map +1 -0
  14. package/cr/getEndpointAclPolicies.d.ts +22 -0
  15. package/cr/getEndpointAclPolicies.js +24 -0
  16. package/cr/getEndpointAclPolicies.js.map +1 -0
  17. package/cr/getEndpointAclPolicy.d.ts +52 -0
  18. package/cr/getEndpointAclPolicy.js +28 -0
  19. package/cr/getEndpointAclPolicy.js.map +1 -0
  20. package/cr/getRegistry.d.ts +14 -10
  21. package/cr/getRegistry.js.map +1 -1
  22. package/cr/index.d.ts +9 -0
  23. package/cr/index.js +12 -1
  24. package/cr/index.js.map +1 -1
  25. package/cr/registry.d.ts +40 -25
  26. package/cr/registry.js +6 -1
  27. package/cr/registry.js.map +1 -1
  28. package/iam/accesskey.d.ts +23 -27
  29. package/iam/accesskey.js +2 -2
  30. package/iam/accesskey.js.map +1 -1
  31. package/iam/getAccesskey.d.ts +10 -10
  32. package/organization/getServiceControlPolicies.d.ts +22 -0
  33. package/organization/getServiceControlPolicies.js +24 -0
  34. package/organization/getServiceControlPolicies.js.map +1 -0
  35. package/organization/getServiceControlPolicy.d.ts +69 -0
  36. package/organization/getServiceControlPolicy.js +28 -0
  37. package/organization/getServiceControlPolicy.js.map +1 -0
  38. package/organization/index.d.ts +9 -0
  39. package/organization/index.js +12 -1
  40. package/organization/index.js.map +1 -1
  41. package/organization/serviceControlPolicy.d.ts +118 -0
  42. package/organization/serviceControlPolicy.js +78 -0
  43. package/organization/serviceControlPolicy.js.map +1 -0
  44. package/package.json +1 -1
  45. package/transitrouter/getPeerAttachment.d.ts +109 -0
  46. package/transitrouter/getPeerAttachment.js +28 -0
  47. package/transitrouter/getPeerAttachment.js.map +1 -0
  48. package/transitrouter/getPeerAttachments.d.ts +22 -0
  49. package/transitrouter/getPeerAttachments.js +24 -0
  50. package/transitrouter/getPeerAttachments.js.map +1 -0
  51. package/transitrouter/index.d.ts +9 -0
  52. package/transitrouter/index.js +12 -1
  53. package/transitrouter/index.js.map +1 -1
  54. package/transitrouter/peerAttachment.d.ts +235 -0
  55. package/transitrouter/peerAttachment.js +122 -0
  56. package/transitrouter/peerAttachment.js.map +1 -0
  57. package/types/input.d.ts +101 -50
  58. package/types/output.d.ts +199 -102
  59. package/vpn/getSslVpnClientCert.d.ts +93 -0
  60. package/vpn/getSslVpnClientCert.js +28 -0
  61. package/vpn/getSslVpnClientCert.js.map +1 -0
  62. package/vpn/getSslVpnClientCerts.d.ts +22 -0
  63. package/vpn/getSslVpnClientCerts.js +24 -0
  64. package/vpn/getSslVpnClientCerts.js.map +1 -0
  65. package/vpn/index.d.ts +9 -0
  66. package/vpn/index.js +12 -1
  67. package/vpn/index.js.map +1 -1
  68. package/vpn/sslVpnClientCert.d.ts +183 -0
  69. package/vpn/sslVpnClientCert.js +104 -0
  70. package/vpn/sslVpnClientCert.js.map +1 -0
package/cr/registry.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  import * as outputs from "../types/output";
4
4
  /**
5
- * Container Registry (CR) provides secure, highly available hosting services for container images, Helm Charts, and other OCI-compliant cloud-native artifacts, making it easy for enterprise users to manage the full lifecycle of container images and Helm Charts
5
+ * Container Registry (CR) provides secure, highly available hosting for container images, Helm Charts, and other OCI-compliant cloud-native artifacts, making it easy for enterprise users to manage the full lifecycle of container images and Helm Charts.
6
6
  *
7
7
  * ## Example Usage
8
8
  *
@@ -14,6 +14,9 @@ import * as outputs from "../types/output";
14
14
  * project: "default",
15
15
  * name: "test",
16
16
  * type: "Enterprise",
17
+ * endpoint: {
18
+ * enabled: true,
19
+ * },
17
20
  * tags: [{
18
21
  * key: "env",
19
22
  * value: "test",
@@ -44,44 +47,48 @@ export declare class Registry extends pulumi.CustomResource {
44
47
  */
45
48
  static isInstance(obj: any): obj is Registry;
46
49
  /**
47
- * Billing type for the container registry instance. Currently, only PostCharge pay-as-you-go mode is supported
50
+ * Container registry instance billing type. Currently, only the PostCharge pay-as-you-go mode is supported.
48
51
  */
49
52
  readonly chargeType: pulumi.Output<string>;
50
53
  /**
51
- * Creation time of the container registry instance
54
+ * Time when the container registry instance was created.
52
55
  */
53
56
  readonly createdTime: pulumi.Output<string>;
54
57
  /**
55
- * Instance expiration time is only available for HybridCharge billing type
58
+ * Public endpoint information for the image repository instance
59
+ */
60
+ readonly endpoint: pulumi.Output<outputs.cr.RegistryEndpoint>;
61
+ /**
62
+ * Only applicable when the billing type is HybridCharge. Instance expiration time
56
63
  */
57
64
  readonly expireTime: pulumi.Output<string>;
58
65
  /**
59
- * Standard edition instance name. Names must be unique within the same region. Supports lowercase English letters, numbers, and hyphens (-). Numbers cannot be the first character, and hyphens (-) cannot be the first or last character. Length must be 330 characters
66
+ * Standard Edition instance name. Names must be unique within the same region. Supports lowercase English letters, numbers, and hyphens (-). Numbers cannot be the first character, and hyphens (-) cannot be the first or last character. Length must be between 3 and 30 characters.
60
67
  */
61
68
  readonly name: pulumi.Output<string>;
62
69
  /**
63
- * Enter the project to associate with the instance. Each instance can only be associated with one project
70
+ * Specify the project to associate with the instance. Each instance can only be associated with one project
64
71
  */
65
72
  readonly project: pulumi.Output<string>;
66
73
  /**
67
- * ProxyCache configuration. Required when set as ProxyCache
74
+ * ProxyCache configuration. Required when set to ProxyCache
68
75
  */
69
76
  readonly proxyCache: pulumi.Output<outputs.cr.RegistryProxyCache>;
70
77
  /**
71
- * Set as ProxyCache instance
78
+ * Whether to set as ProxyCache instance
72
79
  */
73
80
  readonly proxyCacheEnabled: pulumi.Output<boolean>;
74
81
  /**
75
- * Instance auto-renewal type is only available for HybridCharge billing type
82
+ * Only applicable when the billing type is HybridCharge. Instance auto-renewal type
76
83
  */
77
84
  readonly renewType: pulumi.Output<string>;
78
85
  /**
79
- * Container registry instance status consists of Phase and Conditions. Valid Phase and Conditions combinations are as follows: {Creating, [Progressing]}: Creating, {Running, [Ok]}: Running, {Running, [Degraded]}: Running, {Stopped, [Balance]}: Suspended due to insufficient balance, {Stopped, [Released]}: Pending reclamation, {Stopped, [Released, Balance]}: Suspended due to insufficient balance, {Starting, [Progressing]}: Starting, {Deleting, [Progressing]}: Deleting, {Failed, [Unknown]}: Abnormal
86
+ * Container registry instance status, composed of Phase and Conditions. Valid Phase and Conditions combinations are as follows: {Creating, [Progressing]}: Creating, {Running, [Ok]}: Running, {Running, [Degraded]}: Running, {Stopped, [Balance]}: Suspended due to overdue payment, {Stopped, [Released]}: Pending recycle, {Stopped, [Released, Balance]}: Suspended due to overdue payment, {Starting, [Progressing]}: Starting, {Deleting, [Progressing]}: Deleting, {Failed, [Unknown]}: Error
80
87
  */
81
88
  readonly status: pulumi.Output<outputs.cr.RegistryStatus>;
82
89
  readonly tags: pulumi.Output<outputs.cr.RegistryTag[]>;
83
90
  /**
84
- * If not specified, a standard edition instance will be created by default. Enterprise: Standard edition, Micro: Micro edition
91
+ * If not specified, a Standard Edition instance will be created by default. Enterprise: Standard Edition, Micro: Micro Edition
85
92
  */
86
93
  readonly type: pulumi.Output<string>;
87
94
  /**
@@ -98,44 +105,48 @@ export declare class Registry extends pulumi.CustomResource {
98
105
  */
99
106
  export interface RegistryState {
100
107
  /**
101
- * Billing type for the container registry instance. Currently, only PostCharge pay-as-you-go mode is supported
108
+ * Container registry instance billing type. Currently, only the PostCharge pay-as-you-go mode is supported.
102
109
  */
103
110
  chargeType?: pulumi.Input<string>;
104
111
  /**
105
- * Creation time of the container registry instance
112
+ * Time when the container registry instance was created.
106
113
  */
107
114
  createdTime?: pulumi.Input<string>;
108
115
  /**
109
- * Instance expiration time is only available for HybridCharge billing type
116
+ * Public endpoint information for the image repository instance
117
+ */
118
+ endpoint?: pulumi.Input<inputs.cr.RegistryEndpoint>;
119
+ /**
120
+ * Only applicable when the billing type is HybridCharge. Instance expiration time
110
121
  */
111
122
  expireTime?: pulumi.Input<string>;
112
123
  /**
113
- * Standard edition instance name. Names must be unique within the same region. Supports lowercase English letters, numbers, and hyphens (-). Numbers cannot be the first character, and hyphens (-) cannot be the first or last character. Length must be 330 characters
124
+ * Standard Edition instance name. Names must be unique within the same region. Supports lowercase English letters, numbers, and hyphens (-). Numbers cannot be the first character, and hyphens (-) cannot be the first or last character. Length must be between 3 and 30 characters.
114
125
  */
115
126
  name?: pulumi.Input<string>;
116
127
  /**
117
- * Enter the project to associate with the instance. Each instance can only be associated with one project
128
+ * Specify the project to associate with the instance. Each instance can only be associated with one project
118
129
  */
119
130
  project?: pulumi.Input<string>;
120
131
  /**
121
- * ProxyCache configuration. Required when set as ProxyCache
132
+ * ProxyCache configuration. Required when set to ProxyCache
122
133
  */
123
134
  proxyCache?: pulumi.Input<inputs.cr.RegistryProxyCache>;
124
135
  /**
125
- * Set as ProxyCache instance
136
+ * Whether to set as ProxyCache instance
126
137
  */
127
138
  proxyCacheEnabled?: pulumi.Input<boolean>;
128
139
  /**
129
- * Instance auto-renewal type is only available for HybridCharge billing type
140
+ * Only applicable when the billing type is HybridCharge. Instance auto-renewal type
130
141
  */
131
142
  renewType?: pulumi.Input<string>;
132
143
  /**
133
- * Container registry instance status consists of Phase and Conditions. Valid Phase and Conditions combinations are as follows: {Creating, [Progressing]}: Creating, {Running, [Ok]}: Running, {Running, [Degraded]}: Running, {Stopped, [Balance]}: Suspended due to insufficient balance, {Stopped, [Released]}: Pending reclamation, {Stopped, [Released, Balance]}: Suspended due to insufficient balance, {Starting, [Progressing]}: Starting, {Deleting, [Progressing]}: Deleting, {Failed, [Unknown]}: Abnormal
144
+ * Container registry instance status, composed of Phase and Conditions. Valid Phase and Conditions combinations are as follows: {Creating, [Progressing]}: Creating, {Running, [Ok]}: Running, {Running, [Degraded]}: Running, {Stopped, [Balance]}: Suspended due to overdue payment, {Stopped, [Released]}: Pending recycle, {Stopped, [Released, Balance]}: Suspended due to overdue payment, {Starting, [Progressing]}: Starting, {Deleting, [Progressing]}: Deleting, {Failed, [Unknown]}: Error
134
145
  */
135
146
  status?: pulumi.Input<inputs.cr.RegistryStatus>;
136
147
  tags?: pulumi.Input<pulumi.Input<inputs.cr.RegistryTag>[]>;
137
148
  /**
138
- * If not specified, a standard edition instance will be created by default. Enterprise: Standard edition, Micro: Micro edition
149
+ * If not specified, a Standard Edition instance will be created by default. Enterprise: Standard Edition, Micro: Micro Edition
139
150
  */
140
151
  type?: pulumi.Input<string>;
141
152
  }
@@ -144,20 +155,24 @@ export interface RegistryState {
144
155
  */
145
156
  export interface RegistryArgs {
146
157
  /**
147
- * Standard edition instance name. Names must be unique within the same region. Supports lowercase English letters, numbers, and hyphens (-). Numbers cannot be the first character, and hyphens (-) cannot be the first or last character. Length must be 3–30 characters
158
+ * Public endpoint information for the image repository instance
159
+ */
160
+ endpoint?: pulumi.Input<inputs.cr.RegistryEndpoint>;
161
+ /**
162
+ * Standard Edition instance name. Names must be unique within the same region. Supports lowercase English letters, numbers, and hyphens (-). Numbers cannot be the first character, and hyphens (-) cannot be the first or last character. Length must be between 3 and 30 characters.
148
163
  */
149
164
  name: pulumi.Input<string>;
150
165
  /**
151
- * Enter the project to associate with the instance. Each instance can only be associated with one project
166
+ * Specify the project to associate with the instance. Each instance can only be associated with one project
152
167
  */
153
168
  project?: pulumi.Input<string>;
154
169
  /**
155
- * Container registry instance status consists of Phase and Conditions. Valid Phase and Conditions combinations are as follows: {Creating, [Progressing]}: Creating, {Running, [Ok]}: Running, {Running, [Degraded]}: Running, {Stopped, [Balance]}: Suspended due to insufficient balance, {Stopped, [Released]}: Pending reclamation, {Stopped, [Released, Balance]}: Suspended due to insufficient balance, {Starting, [Progressing]}: Starting, {Deleting, [Progressing]}: Deleting, {Failed, [Unknown]}: Abnormal
170
+ * Container registry instance status, composed of Phase and Conditions. Valid Phase and Conditions combinations are as follows: {Creating, [Progressing]}: Creating, {Running, [Ok]}: Running, {Running, [Degraded]}: Running, {Stopped, [Balance]}: Suspended due to overdue payment, {Stopped, [Released]}: Pending recycle, {Stopped, [Released, Balance]}: Suspended due to overdue payment, {Starting, [Progressing]}: Starting, {Deleting, [Progressing]}: Deleting, {Failed, [Unknown]}: Error
156
171
  */
157
172
  status?: pulumi.Input<inputs.cr.RegistryStatus>;
158
173
  tags?: pulumi.Input<pulumi.Input<inputs.cr.RegistryTag>[]>;
159
174
  /**
160
- * If not specified, a standard edition instance will be created by default. Enterprise: Standard edition, Micro: Micro edition
175
+ * If not specified, a Standard Edition instance will be created by default. Enterprise: Standard Edition, Micro: Micro Edition
161
176
  */
162
177
  type?: pulumi.Input<string>;
163
178
  }
package/cr/registry.js CHANGED
@@ -6,7 +6,7 @@ exports.Registry = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * Container Registry (CR) provides secure, highly available hosting services for container images, Helm Charts, and other OCI-compliant cloud-native artifacts, making it easy for enterprise users to manage the full lifecycle of container images and Helm Charts
9
+ * Container Registry (CR) provides secure, highly available hosting for container images, Helm Charts, and other OCI-compliant cloud-native artifacts, making it easy for enterprise users to manage the full lifecycle of container images and Helm Charts.
10
10
  *
11
11
  * ## Example Usage
12
12
  *
@@ -18,6 +18,9 @@ const utilities = require("../utilities");
18
18
  * project: "default",
19
19
  * name: "test",
20
20
  * type: "Enterprise",
21
+ * endpoint: {
22
+ * enabled: true,
23
+ * },
21
24
  * tags: [{
22
25
  * key: "env",
23
26
  * value: "test",
@@ -61,6 +64,7 @@ class Registry extends pulumi.CustomResource {
61
64
  const state = argsOrState;
62
65
  resourceInputs["chargeType"] = state ? state.chargeType : undefined;
63
66
  resourceInputs["createdTime"] = state ? state.createdTime : undefined;
67
+ resourceInputs["endpoint"] = state ? state.endpoint : undefined;
64
68
  resourceInputs["expireTime"] = state ? state.expireTime : undefined;
65
69
  resourceInputs["name"] = state ? state.name : undefined;
66
70
  resourceInputs["project"] = state ? state.project : undefined;
@@ -76,6 +80,7 @@ class Registry extends pulumi.CustomResource {
76
80
  if ((!args || args.name === undefined) && !opts.urn) {
77
81
  throw new Error("Missing required property 'name'");
78
82
  }
83
+ resourceInputs["endpoint"] = args ? args.endpoint : undefined;
79
84
  resourceInputs["name"] = args ? args.name : undefined;
80
85
  resourceInputs["project"] = args ? args.project : undefined;
81
86
  resourceInputs["status"] = args ? args.status : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"registry.js","sourceRoot":"","sources":["../../cr/registry.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IAoDD,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,mBAAmB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AAjHL,4BAkHC;AApGG,gBAAgB;AACO,qBAAY,GAAG,mCAAmC,CAAC"}
1
+ {"version":3,"file":"registry.js","sourceRoot":"","sources":["../../cr/registry.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * Access control (Identity and Access Management, abbreviated as IAM) is a permission management system provided by Volcano Engine for customers to control access to cloud resources by different identities.
3
+ * Access control (Identity and Access Management, IAM) is a permission management system provided by Volcano Engine to help customers control access to cloud resources for different identities
4
4
  *
5
5
  * ## Example Usage
6
6
  *
@@ -34,43 +34,43 @@ export declare class Accesskey extends pulumi.CustomResource {
34
34
  */
35
35
  static isInstance(obj: any): obj is Accesskey;
36
36
  /**
37
- * Access Key Id.
37
+ * Key ID (Access Key Id)
38
38
  */
39
39
  readonly accessKeyId: pulumi.Output<string>;
40
40
  /**
41
- * Key creation time. The time format is ISO8601.
41
+ * Key creation time (ISO8601 format)
42
42
  */
43
43
  readonly createdTime: pulumi.Output<string>;
44
44
  /**
45
- * Last login time.
45
+ * Last login time
46
46
  */
47
47
  readonly lastLoginDate: pulumi.Output<string>;
48
48
  /**
49
- * The last region accessed by the API key.
49
+ * Last accessed region by the API key
50
50
  */
51
51
  readonly region: pulumi.Output<string>;
52
52
  /**
53
- * The last time the API key was used.
53
+ * Last usage time of the API key
54
54
  */
55
55
  readonly requestTime: pulumi.Output<string>;
56
56
  /**
57
- * Secret Access Key.
57
+ * Secret Access Key
58
58
  */
59
59
  readonly secretAccessKey: pulumi.Output<string>;
60
60
  /**
61
- * The English abbreviation of the last service accessed by the API key.
61
+ * English abbreviation of the last accessed service by the API key
62
62
  */
63
63
  readonly service: pulumi.Output<string>;
64
64
  /**
65
- * Key status. active means enabled, inactive means disabled.
65
+ * Key status. "active" means enabled, "inactive" means disabled
66
66
  */
67
67
  readonly status: pulumi.Output<string>;
68
68
  /**
69
- * Key update time. The time format is ISO8601.
69
+ * Key update time (ISO8601 format)
70
70
  */
71
71
  readonly updatedTime: pulumi.Output<string>;
72
72
  /**
73
- * User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
73
+ * User name. Used to create a key for a specified IAM user. If no user name is specified, the key is created for the current request identity (that is, if the main account requests, the key is created for the main account; if an IAM user requests, the key is created for that IAM user. Note: Roles cannot create keys for themselves). When an IAM user has the AccessKeySelfManageAccess permission, to create a key for themselves, they must include their own UserName in the request
74
74
  */
75
75
  readonly userName: pulumi.Output<string>;
76
76
  /**
@@ -87,43 +87,43 @@ export declare class Accesskey extends pulumi.CustomResource {
87
87
  */
88
88
  export interface AccesskeyState {
89
89
  /**
90
- * Access Key Id.
90
+ * Key ID (Access Key Id)
91
91
  */
92
92
  accessKeyId?: pulumi.Input<string>;
93
93
  /**
94
- * Key creation time. The time format is ISO8601.
94
+ * Key creation time (ISO8601 format)
95
95
  */
96
96
  createdTime?: pulumi.Input<string>;
97
97
  /**
98
- * Last login time.
98
+ * Last login time
99
99
  */
100
100
  lastLoginDate?: pulumi.Input<string>;
101
101
  /**
102
- * The last region accessed by the API key.
102
+ * Last accessed region by the API key
103
103
  */
104
104
  region?: pulumi.Input<string>;
105
105
  /**
106
- * The last time the API key was used.
106
+ * Last usage time of the API key
107
107
  */
108
108
  requestTime?: pulumi.Input<string>;
109
109
  /**
110
- * Secret Access Key.
110
+ * Secret Access Key
111
111
  */
112
112
  secretAccessKey?: pulumi.Input<string>;
113
113
  /**
114
- * The English abbreviation of the last service accessed by the API key.
114
+ * English abbreviation of the last accessed service by the API key
115
115
  */
116
116
  service?: pulumi.Input<string>;
117
117
  /**
118
- * Key status. active means enabled, inactive means disabled.
118
+ * Key status. "active" means enabled, "inactive" means disabled
119
119
  */
120
120
  status?: pulumi.Input<string>;
121
121
  /**
122
- * Key update time. The time format is ISO8601.
122
+ * Key update time (ISO8601 format)
123
123
  */
124
124
  updatedTime?: pulumi.Input<string>;
125
125
  /**
126
- * User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
126
+ * User name. Used to create a key for a specified IAM user. If no user name is specified, the key is created for the current request identity (that is, if the main account requests, the key is created for the main account; if an IAM user requests, the key is created for that IAM user. Note: Roles cannot create keys for themselves). When an IAM user has the AccessKeySelfManageAccess permission, to create a key for themselves, they must include their own UserName in the request
127
127
  */
128
128
  userName?: pulumi.Input<string>;
129
129
  }
@@ -132,15 +132,11 @@ export interface AccesskeyState {
132
132
  */
133
133
  export interface AccesskeyArgs {
134
134
  /**
135
- * Last login time.
136
- */
137
- lastLoginDate?: pulumi.Input<string>;
138
- /**
139
- * Key status. active means enabled, inactive means disabled.
135
+ * Key status. "active" means enabled, "inactive" means disabled
140
136
  */
141
137
  status?: pulumi.Input<string>;
142
138
  /**
143
- * User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
139
+ * User name. Used to create a key for a specified IAM user. If no user name is specified, the key is created for the current request identity (that is, if the main account requests, the key is created for the main account; if an IAM user requests, the key is created for that IAM user. Note: Roles cannot create keys for themselves). When an IAM user has the AccessKeySelfManageAccess permission, to create a key for themselves, they must include their own UserName in the request
144
140
  */
145
141
  userName?: pulumi.Input<string>;
146
142
  }
package/iam/accesskey.js CHANGED
@@ -6,7 +6,7 @@ exports.Accesskey = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * Access control (Identity and Access Management, abbreviated as IAM) is a permission management system provided by Volcano Engine for customers to control access to cloud resources by different identities.
9
+ * Access control (Identity and Access Management, IAM) is a permission management system provided by Volcano Engine to help customers control access to cloud resources for different identities
10
10
  *
11
11
  * ## Example Usage
12
12
  *
@@ -64,11 +64,11 @@ class Accesskey extends pulumi.CustomResource {
64
64
  }
65
65
  else {
66
66
  const args = argsOrState;
67
- resourceInputs["lastLoginDate"] = args ? args.lastLoginDate : undefined;
68
67
  resourceInputs["status"] = args ? args.status : undefined;
69
68
  resourceInputs["userName"] = args ? args.userName : undefined;
70
69
  resourceInputs["accessKeyId"] = undefined /*out*/;
71
70
  resourceInputs["createdTime"] = undefined /*out*/;
71
+ resourceInputs["lastLoginDate"] = undefined /*out*/;
72
72
  resourceInputs["region"] = undefined /*out*/;
73
73
  resourceInputs["requestTime"] = undefined /*out*/;
74
74
  resourceInputs["secretAccessKey"] = undefined /*out*/;
@@ -1 +1 @@
1
- {"version":3,"file":"accesskey.js","sourceRoot":"","sources":["../../iam/accesskey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IAmDD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AA3GL,8BA4GC;AA9FG,gBAAgB;AACO,sBAAY,GAAG,sCAAsC,CAAC"}
1
+ {"version":3,"file":"accesskey.js","sourceRoot":"","sources":["../../iam/accesskey.ts"],"names":[],"mappings":"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"}
@@ -17,11 +17,11 @@ export interface GetAccesskeyArgs {
17
17
  */
18
18
  export interface GetAccesskeyResult {
19
19
  /**
20
- * Access Key Id.
20
+ * Key ID (Access Key Id)
21
21
  */
22
22
  readonly accessKeyId: string;
23
23
  /**
24
- * Key creation time. The time format is ISO8601.
24
+ * Key creation time (ISO8601 format)
25
25
  */
26
26
  readonly createdTime: string;
27
27
  /**
@@ -29,35 +29,35 @@ export interface GetAccesskeyResult {
29
29
  */
30
30
  readonly id: string;
31
31
  /**
32
- * Last login time.
32
+ * Last login time
33
33
  */
34
34
  readonly lastLoginDate: string;
35
35
  /**
36
- * The last region accessed by the API key.
36
+ * Last accessed region by the API key
37
37
  */
38
38
  readonly region: string;
39
39
  /**
40
- * The last time the API key was used.
40
+ * Last usage time of the API key
41
41
  */
42
42
  readonly requestTime: string;
43
43
  /**
44
- * Secret Access Key.
44
+ * Secret Access Key
45
45
  */
46
46
  readonly secretAccessKey: string;
47
47
  /**
48
- * The English abbreviation of the last service accessed by the API key.
48
+ * English abbreviation of the last accessed service by the API key
49
49
  */
50
50
  readonly service: string;
51
51
  /**
52
- * Key status. active means enabled, inactive means disabled.
52
+ * Key status. "active" means enabled, "inactive" means disabled
53
53
  */
54
54
  readonly status: string;
55
55
  /**
56
- * Key update time. The time format is ISO8601.
56
+ * Key update time (ISO8601 format)
57
57
  */
58
58
  readonly updatedTime: string;
59
59
  /**
60
- * User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
60
+ * User name. Used to create a key for a specified IAM user. If no user name is specified, the key is created for the current request identity (that is, if the main account requests, the key is created for the main account; if an IAM user requests, the key is created for that IAM user. Note: Roles cannot create keys for themselves). When an IAM user has the AccessKeySelfManageAccess permission, to create a key for themselves, they must include their own UserName in the request
61
61
  */
62
62
  readonly userName: string;
63
63
  }
@@ -0,0 +1,22 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Plural Data Source schema for Volcengine::Organization::ServiceControlPolicy
4
+ */
5
+ export declare function getServiceControlPolicies(opts?: pulumi.InvokeOptions): Promise<GetServiceControlPoliciesResult>;
6
+ /**
7
+ * A collection of values returned by getServiceControlPolicies.
8
+ */
9
+ export interface GetServiceControlPoliciesResult {
10
+ /**
11
+ * Uniquely identifies the data source.
12
+ */
13
+ readonly id: string;
14
+ /**
15
+ * Set of Resource Identifiers.
16
+ */
17
+ readonly ids: string[];
18
+ }
19
+ /**
20
+ * Plural Data Source schema for Volcengine::Organization::ServiceControlPolicy
21
+ */
22
+ export declare function getServiceControlPoliciesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceControlPoliciesResult>;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getServiceControlPoliciesOutput = exports.getServiceControlPolicies = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Plural Data Source schema for Volcengine::Organization::ServiceControlPolicy
10
+ */
11
+ function getServiceControlPolicies(opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("volcenginecc:organization/getServiceControlPolicies:getServiceControlPolicies", {}, opts);
14
+ }
15
+ exports.getServiceControlPolicies = getServiceControlPolicies;
16
+ /**
17
+ * Plural Data Source schema for Volcengine::Organization::ServiceControlPolicy
18
+ */
19
+ function getServiceControlPoliciesOutput(opts) {
20
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
21
+ return pulumi.runtime.invokeOutput("volcenginecc:organization/getServiceControlPolicies:getServiceControlPolicies", {}, opts);
22
+ }
23
+ exports.getServiceControlPoliciesOutput = getServiceControlPoliciesOutput;
24
+ //# sourceMappingURL=getServiceControlPolicies.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getServiceControlPolicies.js","sourceRoot":"","sources":["../../organization/getServiceControlPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,yBAAyB,CAAC,IAA2B;IACjE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+EAA+E,EAAE,EAC7G,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,8DAIC;AAeD;;GAEG;AACH,SAAgB,+BAA+B,CAAC,IAAiC;IAC7E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+EAA+E,EAAE,EACnH,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,0EAIC"}
@@ -0,0 +1,69 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Data Source schema for Volcengine::Organization::ServiceControlPolicy
5
+ */
6
+ export declare function getServiceControlPolicy(args: GetServiceControlPolicyArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceControlPolicyResult>;
7
+ /**
8
+ * A collection of arguments for invoking getServiceControlPolicy.
9
+ */
10
+ export interface GetServiceControlPolicyArgs {
11
+ /**
12
+ * Uniquely identifies the resource.
13
+ */
14
+ id: string;
15
+ }
16
+ /**
17
+ * A collection of values returned by getServiceControlPolicy.
18
+ */
19
+ export interface GetServiceControlPolicyResult {
20
+ /**
21
+ * Creation time.
22
+ */
23
+ readonly createDate: string;
24
+ /**
25
+ * Description.
26
+ */
27
+ readonly description: string;
28
+ /**
29
+ * Uniquely identifies the resource.
30
+ */
31
+ readonly id: string;
32
+ /**
33
+ * Policy ID.
34
+ */
35
+ readonly policyId: string;
36
+ /**
37
+ * Policy name.
38
+ */
39
+ readonly policyName: string;
40
+ /**
41
+ * Policy type.
42
+ */
43
+ readonly policyType: string;
44
+ /**
45
+ * Policy expression.
46
+ */
47
+ readonly statement: string;
48
+ /**
49
+ * List of bound target objects.
50
+ */
51
+ readonly targets: outputs.organization.GetServiceControlPolicyTarget[];
52
+ /**
53
+ * Update time.
54
+ */
55
+ readonly updateDate: string;
56
+ }
57
+ /**
58
+ * Data Source schema for Volcengine::Organization::ServiceControlPolicy
59
+ */
60
+ export declare function getServiceControlPolicyOutput(args: GetServiceControlPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceControlPolicyResult>;
61
+ /**
62
+ * A collection of arguments for invoking getServiceControlPolicy.
63
+ */
64
+ export interface GetServiceControlPolicyOutputArgs {
65
+ /**
66
+ * Uniquely identifies the resource.
67
+ */
68
+ id: pulumi.Input<string>;
69
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getServiceControlPolicyOutput = exports.getServiceControlPolicy = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Data Source schema for Volcengine::Organization::ServiceControlPolicy
10
+ */
11
+ function getServiceControlPolicy(args, opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("volcenginecc:organization/getServiceControlPolicy:getServiceControlPolicy", {
14
+ "id": args.id,
15
+ }, opts);
16
+ }
17
+ exports.getServiceControlPolicy = getServiceControlPolicy;
18
+ /**
19
+ * Data Source schema for Volcengine::Organization::ServiceControlPolicy
20
+ */
21
+ function getServiceControlPolicyOutput(args, opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invokeOutput("volcenginecc:organization/getServiceControlPolicy:getServiceControlPolicy", {
24
+ "id": args.id,
25
+ }, opts);
26
+ }
27
+ exports.getServiceControlPolicyOutput = getServiceControlPolicyOutput;
28
+ //# sourceMappingURL=getServiceControlPolicy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getServiceControlPolicy.js","sourceRoot":"","sources":["../../organization/getServiceControlPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC;AAqDD;;GAEG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAAiC;IACpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2EAA2E,EAAE;QAC5G,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sEAKC"}
@@ -13,6 +13,12 @@ export declare const getOrganizationOutput: typeof import("./getOrganization").g
13
13
  export { GetOrganizationsResult } from "./getOrganizations";
14
14
  export declare const getOrganizations: typeof import("./getOrganizations").getOrganizations;
15
15
  export declare const getOrganizationsOutput: typeof import("./getOrganizations").getOrganizationsOutput;
16
+ export { GetServiceControlPoliciesResult } from "./getServiceControlPolicies";
17
+ export declare const getServiceControlPolicies: typeof import("./getServiceControlPolicies").getServiceControlPolicies;
18
+ export declare const getServiceControlPoliciesOutput: typeof import("./getServiceControlPolicies").getServiceControlPoliciesOutput;
19
+ export { GetServiceControlPolicyArgs, GetServiceControlPolicyResult, GetServiceControlPolicyOutputArgs } from "./getServiceControlPolicy";
20
+ export declare const getServiceControlPolicy: typeof import("./getServiceControlPolicy").getServiceControlPolicy;
21
+ export declare const getServiceControlPolicyOutput: typeof import("./getServiceControlPolicy").getServiceControlPolicyOutput;
16
22
  export { GetUnitArgs, GetUnitResult, GetUnitOutputArgs } from "./getUnit";
17
23
  export declare const getUnit: typeof import("./getUnit").getUnit;
18
24
  export declare const getUnitOutput: typeof import("./getUnit").getUnitOutput;
@@ -22,6 +28,9 @@ export declare const getUnitsOutput: typeof import("./getUnits").getUnitsOutput;
22
28
  export { OrganizationArgs, OrganizationState } from "./organization";
23
29
  export type Organization = import("./organization").Organization;
24
30
  export declare const Organization: typeof import("./organization").Organization;
31
+ export { ServiceControlPolicyArgs, ServiceControlPolicyState } from "./serviceControlPolicy";
32
+ export type ServiceControlPolicy = import("./serviceControlPolicy").ServiceControlPolicy;
33
+ export declare const ServiceControlPolicy: typeof import("./serviceControlPolicy").ServiceControlPolicy;
25
34
  export { UnitArgs, UnitState } from "./unit";
26
35
  export type Unit = import("./unit").Unit;
27
36
  export declare const Unit: typeof import("./unit").Unit;