pulumi-pulumiservice 0.28.0a1736807230__py3-none-any.whl

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 (32) hide show
  1. pulumi_pulumiservice/__init__.py +76 -0
  2. pulumi_pulumiservice/_enums.py +228 -0
  3. pulumi_pulumiservice/_inputs.py +1143 -0
  4. pulumi_pulumiservice/_utilities.py +327 -0
  5. pulumi_pulumiservice/access_token.py +137 -0
  6. pulumi_pulumiservice/agent_pool.py +235 -0
  7. pulumi_pulumiservice/config/__init__.py +8 -0
  8. pulumi_pulumiservice/config/__init__.pyi +18 -0
  9. pulumi_pulumiservice/config/vars.py +26 -0
  10. pulumi_pulumiservice/deployment_schedule.py +284 -0
  11. pulumi_pulumiservice/deployment_settings.py +377 -0
  12. pulumi_pulumiservice/drift_schedule.py +258 -0
  13. pulumi_pulumiservice/environment.py +228 -0
  14. pulumi_pulumiservice/environment_version_tag.py +248 -0
  15. pulumi_pulumiservice/org_access_token.py +229 -0
  16. pulumi_pulumiservice/outputs.py +902 -0
  17. pulumi_pulumiservice/provider.py +95 -0
  18. pulumi_pulumiservice/pulumi-plugin.json +5 -0
  19. pulumi_pulumiservice/py.typed +0 -0
  20. pulumi_pulumiservice/stack.py +214 -0
  21. pulumi_pulumiservice/stack_tag.py +245 -0
  22. pulumi_pulumiservice/team.py +300 -0
  23. pulumi_pulumiservice/team_access_token.py +226 -0
  24. pulumi_pulumiservice/team_environment_permission.py +213 -0
  25. pulumi_pulumiservice/team_stack_permission.py +201 -0
  26. pulumi_pulumiservice/template_source.py +216 -0
  27. pulumi_pulumiservice/ttl_schedule.py +258 -0
  28. pulumi_pulumiservice/webhook.py +451 -0
  29. pulumi_pulumiservice-0.28.0a1736807230.dist-info/METADATA +121 -0
  30. pulumi_pulumiservice-0.28.0a1736807230.dist-info/RECORD +32 -0
  31. pulumi_pulumiservice-0.28.0a1736807230.dist-info/WHEEL +5 -0
  32. pulumi_pulumiservice-0.28.0a1736807230.dist-info/top_level.txt +1 -0
@@ -0,0 +1,95 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+
17
+ __all__ = ['ProviderArgs', 'Provider']
18
+
19
+ @pulumi.input_type
20
+ class ProviderArgs:
21
+ def __init__(__self__, *,
22
+ access_token: Optional[pulumi.Input[str]] = None):
23
+ """
24
+ The set of arguments for constructing a Provider resource.
25
+ :param pulumi.Input[str] access_token: Access Token to authenticate with Pulumi Cloud.
26
+ """
27
+ if access_token is not None:
28
+ pulumi.set(__self__, "access_token", access_token)
29
+
30
+ @property
31
+ @pulumi.getter(name="accessToken")
32
+ def access_token(self) -> Optional[pulumi.Input[str]]:
33
+ """
34
+ Access Token to authenticate with Pulumi Cloud.
35
+ """
36
+ return pulumi.get(self, "access_token")
37
+
38
+ @access_token.setter
39
+ def access_token(self, value: Optional[pulumi.Input[str]]):
40
+ pulumi.set(self, "access_token", value)
41
+
42
+
43
+ class Provider(pulumi.ProviderResource):
44
+ @overload
45
+ def __init__(__self__,
46
+ resource_name: str,
47
+ opts: Optional[pulumi.ResourceOptions] = None,
48
+ access_token: Optional[pulumi.Input[str]] = None,
49
+ __props__=None):
50
+ """
51
+ Create a Pulumiservice resource with the given unique name, props, and options.
52
+ :param str resource_name: The name of the resource.
53
+ :param pulumi.ResourceOptions opts: Options for the resource.
54
+ :param pulumi.Input[str] access_token: Access Token to authenticate with Pulumi Cloud.
55
+ """
56
+ ...
57
+ @overload
58
+ def __init__(__self__,
59
+ resource_name: str,
60
+ args: Optional[ProviderArgs] = None,
61
+ opts: Optional[pulumi.ResourceOptions] = None):
62
+ """
63
+ Create a Pulumiservice resource with the given unique name, props, and options.
64
+ :param str resource_name: The name of the resource.
65
+ :param ProviderArgs args: The arguments to use to populate this resource's properties.
66
+ :param pulumi.ResourceOptions opts: Options for the resource.
67
+ """
68
+ ...
69
+ def __init__(__self__, resource_name: str, *args, **kwargs):
70
+ resource_args, opts = _utilities.get_resource_args_opts(ProviderArgs, pulumi.ResourceOptions, *args, **kwargs)
71
+ if resource_args is not None:
72
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
73
+ else:
74
+ __self__._internal_init(resource_name, *args, **kwargs)
75
+
76
+ def _internal_init(__self__,
77
+ resource_name: str,
78
+ opts: Optional[pulumi.ResourceOptions] = None,
79
+ access_token: Optional[pulumi.Input[str]] = None,
80
+ __props__=None):
81
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
82
+ if not isinstance(opts, pulumi.ResourceOptions):
83
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
84
+ if opts.id is None:
85
+ if __props__ is not None:
86
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
87
+ __props__ = ProviderArgs.__new__(ProviderArgs)
88
+
89
+ __props__.__dict__["access_token"] = None if access_token is None else pulumi.Output.secret(access_token)
90
+ super(Provider, __self__).__init__(
91
+ 'pulumiservice',
92
+ resource_name,
93
+ __props__,
94
+ opts)
95
+
@@ -0,0 +1,5 @@
1
+ {
2
+ "resource": true,
3
+ "name": "pulumiservice",
4
+ "version": "0.28.0-alpha.1736807230"
5
+ }
File without changes
@@ -0,0 +1,214 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+
17
+ __all__ = ['StackArgs', 'Stack']
18
+
19
+ @pulumi.input_type
20
+ class StackArgs:
21
+ def __init__(__self__, *,
22
+ organization_name: pulumi.Input[str],
23
+ project_name: pulumi.Input[str],
24
+ stack_name: pulumi.Input[str],
25
+ force_destroy: Optional[pulumi.Input[bool]] = None):
26
+ """
27
+ The set of arguments for constructing a Stack resource.
28
+ :param pulumi.Input[str] organization_name: The name of the organization.
29
+ :param pulumi.Input[str] project_name: The name of the project.
30
+ :param pulumi.Input[str] stack_name: The name of the stack.
31
+ :param pulumi.Input[bool] force_destroy: Optional. Flag indicating whether to delete the stack even if it still contains resources.
32
+ """
33
+ pulumi.set(__self__, "organization_name", organization_name)
34
+ pulumi.set(__self__, "project_name", project_name)
35
+ pulumi.set(__self__, "stack_name", stack_name)
36
+ if force_destroy is not None:
37
+ pulumi.set(__self__, "force_destroy", force_destroy)
38
+
39
+ @property
40
+ @pulumi.getter(name="organizationName")
41
+ def organization_name(self) -> pulumi.Input[str]:
42
+ """
43
+ The name of the organization.
44
+ """
45
+ return pulumi.get(self, "organization_name")
46
+
47
+ @organization_name.setter
48
+ def organization_name(self, value: pulumi.Input[str]):
49
+ pulumi.set(self, "organization_name", value)
50
+
51
+ @property
52
+ @pulumi.getter(name="projectName")
53
+ def project_name(self) -> pulumi.Input[str]:
54
+ """
55
+ The name of the project.
56
+ """
57
+ return pulumi.get(self, "project_name")
58
+
59
+ @project_name.setter
60
+ def project_name(self, value: pulumi.Input[str]):
61
+ pulumi.set(self, "project_name", value)
62
+
63
+ @property
64
+ @pulumi.getter(name="stackName")
65
+ def stack_name(self) -> pulumi.Input[str]:
66
+ """
67
+ The name of the stack.
68
+ """
69
+ return pulumi.get(self, "stack_name")
70
+
71
+ @stack_name.setter
72
+ def stack_name(self, value: pulumi.Input[str]):
73
+ pulumi.set(self, "stack_name", value)
74
+
75
+ @property
76
+ @pulumi.getter(name="forceDestroy")
77
+ def force_destroy(self) -> Optional[pulumi.Input[bool]]:
78
+ """
79
+ Optional. Flag indicating whether to delete the stack even if it still contains resources.
80
+ """
81
+ return pulumi.get(self, "force_destroy")
82
+
83
+ @force_destroy.setter
84
+ def force_destroy(self, value: Optional[pulumi.Input[bool]]):
85
+ pulumi.set(self, "force_destroy", value)
86
+
87
+
88
+ class Stack(pulumi.CustomResource):
89
+ @overload
90
+ def __init__(__self__,
91
+ resource_name: str,
92
+ opts: Optional[pulumi.ResourceOptions] = None,
93
+ force_destroy: Optional[pulumi.Input[bool]] = None,
94
+ organization_name: Optional[pulumi.Input[str]] = None,
95
+ project_name: Optional[pulumi.Input[str]] = None,
96
+ stack_name: Optional[pulumi.Input[str]] = None,
97
+ __props__=None):
98
+ """
99
+ A stack is a collection of resources that share a common lifecycle. Stacks are uniquely identified by their name and the project they belong to.
100
+
101
+ :param str resource_name: The name of the resource.
102
+ :param pulumi.ResourceOptions opts: Options for the resource.
103
+ :param pulumi.Input[bool] force_destroy: Optional. Flag indicating whether to delete the stack even if it still contains resources.
104
+ :param pulumi.Input[str] organization_name: The name of the organization.
105
+ :param pulumi.Input[str] project_name: The name of the project.
106
+ :param pulumi.Input[str] stack_name: The name of the stack.
107
+ """
108
+ ...
109
+ @overload
110
+ def __init__(__self__,
111
+ resource_name: str,
112
+ args: StackArgs,
113
+ opts: Optional[pulumi.ResourceOptions] = None):
114
+ """
115
+ A stack is a collection of resources that share a common lifecycle. Stacks are uniquely identified by their name and the project they belong to.
116
+
117
+ :param str resource_name: The name of the resource.
118
+ :param StackArgs args: The arguments to use to populate this resource's properties.
119
+ :param pulumi.ResourceOptions opts: Options for the resource.
120
+ """
121
+ ...
122
+ def __init__(__self__, resource_name: str, *args, **kwargs):
123
+ resource_args, opts = _utilities.get_resource_args_opts(StackArgs, pulumi.ResourceOptions, *args, **kwargs)
124
+ if resource_args is not None:
125
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
126
+ else:
127
+ __self__._internal_init(resource_name, *args, **kwargs)
128
+
129
+ def _internal_init(__self__,
130
+ resource_name: str,
131
+ opts: Optional[pulumi.ResourceOptions] = None,
132
+ force_destroy: Optional[pulumi.Input[bool]] = None,
133
+ organization_name: Optional[pulumi.Input[str]] = None,
134
+ project_name: Optional[pulumi.Input[str]] = None,
135
+ stack_name: Optional[pulumi.Input[str]] = None,
136
+ __props__=None):
137
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
138
+ if not isinstance(opts, pulumi.ResourceOptions):
139
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
140
+ if opts.id is None:
141
+ if __props__ is not None:
142
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
143
+ __props__ = StackArgs.__new__(StackArgs)
144
+
145
+ __props__.__dict__["force_destroy"] = force_destroy
146
+ if organization_name is None and not opts.urn:
147
+ raise TypeError("Missing required property 'organization_name'")
148
+ __props__.__dict__["organization_name"] = organization_name
149
+ if project_name is None and not opts.urn:
150
+ raise TypeError("Missing required property 'project_name'")
151
+ __props__.__dict__["project_name"] = project_name
152
+ if stack_name is None and not opts.urn:
153
+ raise TypeError("Missing required property 'stack_name'")
154
+ __props__.__dict__["stack_name"] = stack_name
155
+ super(Stack, __self__).__init__(
156
+ 'pulumiservice:index:Stack',
157
+ resource_name,
158
+ __props__,
159
+ opts)
160
+
161
+ @staticmethod
162
+ def get(resource_name: str,
163
+ id: pulumi.Input[str],
164
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Stack':
165
+ """
166
+ Get an existing Stack resource's state with the given name, id, and optional extra
167
+ properties used to qualify the lookup.
168
+
169
+ :param str resource_name: The unique name of the resulting resource.
170
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
171
+ :param pulumi.ResourceOptions opts: Options for the resource.
172
+ """
173
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
174
+
175
+ __props__ = StackArgs.__new__(StackArgs)
176
+
177
+ __props__.__dict__["force_destroy"] = None
178
+ __props__.__dict__["organization_name"] = None
179
+ __props__.__dict__["project_name"] = None
180
+ __props__.__dict__["stack_name"] = None
181
+ return Stack(resource_name, opts=opts, __props__=__props__)
182
+
183
+ @property
184
+ @pulumi.getter(name="forceDestroy")
185
+ def force_destroy(self) -> pulumi.Output[Optional[bool]]:
186
+ """
187
+ Optional. Flag indicating whether to delete the stack even if it still contains resources.
188
+ """
189
+ return pulumi.get(self, "force_destroy")
190
+
191
+ @property
192
+ @pulumi.getter(name="organizationName")
193
+ def organization_name(self) -> pulumi.Output[str]:
194
+ """
195
+ The name of the organization.
196
+ """
197
+ return pulumi.get(self, "organization_name")
198
+
199
+ @property
200
+ @pulumi.getter(name="projectName")
201
+ def project_name(self) -> pulumi.Output[str]:
202
+ """
203
+ The name of the project.
204
+ """
205
+ return pulumi.get(self, "project_name")
206
+
207
+ @property
208
+ @pulumi.getter(name="stackName")
209
+ def stack_name(self) -> pulumi.Output[str]:
210
+ """
211
+ The name of the stack.
212
+ """
213
+ return pulumi.get(self, "stack_name")
214
+
@@ -0,0 +1,245 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+
17
+ __all__ = ['StackTagArgs', 'StackTag']
18
+
19
+ @pulumi.input_type
20
+ class StackTagArgs:
21
+ def __init__(__self__, *,
22
+ name: pulumi.Input[str],
23
+ organization: pulumi.Input[str],
24
+ project: pulumi.Input[str],
25
+ stack: pulumi.Input[str],
26
+ value: pulumi.Input[str]):
27
+ """
28
+ The set of arguments for constructing a StackTag resource.
29
+ :param pulumi.Input[str] name: Name of the tag. The 'key' part of the key=value pair
30
+ :param pulumi.Input[str] organization: Organization name.
31
+ :param pulumi.Input[str] project: Project name.
32
+ :param pulumi.Input[str] stack: Stack name.
33
+ :param pulumi.Input[str] value: Value of the tag. The 'value' part of the key=value pair
34
+ """
35
+ pulumi.set(__self__, "name", name)
36
+ pulumi.set(__self__, "organization", organization)
37
+ pulumi.set(__self__, "project", project)
38
+ pulumi.set(__self__, "stack", stack)
39
+ pulumi.set(__self__, "value", value)
40
+
41
+ @property
42
+ @pulumi.getter
43
+ def name(self) -> pulumi.Input[str]:
44
+ """
45
+ Name of the tag. The 'key' part of the key=value pair
46
+ """
47
+ return pulumi.get(self, "name")
48
+
49
+ @name.setter
50
+ def name(self, value: pulumi.Input[str]):
51
+ pulumi.set(self, "name", value)
52
+
53
+ @property
54
+ @pulumi.getter
55
+ def organization(self) -> pulumi.Input[str]:
56
+ """
57
+ Organization name.
58
+ """
59
+ return pulumi.get(self, "organization")
60
+
61
+ @organization.setter
62
+ def organization(self, value: pulumi.Input[str]):
63
+ pulumi.set(self, "organization", value)
64
+
65
+ @property
66
+ @pulumi.getter
67
+ def project(self) -> pulumi.Input[str]:
68
+ """
69
+ Project name.
70
+ """
71
+ return pulumi.get(self, "project")
72
+
73
+ @project.setter
74
+ def project(self, value: pulumi.Input[str]):
75
+ pulumi.set(self, "project", value)
76
+
77
+ @property
78
+ @pulumi.getter
79
+ def stack(self) -> pulumi.Input[str]:
80
+ """
81
+ Stack name.
82
+ """
83
+ return pulumi.get(self, "stack")
84
+
85
+ @stack.setter
86
+ def stack(self, value: pulumi.Input[str]):
87
+ pulumi.set(self, "stack", value)
88
+
89
+ @property
90
+ @pulumi.getter
91
+ def value(self) -> pulumi.Input[str]:
92
+ """
93
+ Value of the tag. The 'value' part of the key=value pair
94
+ """
95
+ return pulumi.get(self, "value")
96
+
97
+ @value.setter
98
+ def value(self, value: pulumi.Input[str]):
99
+ pulumi.set(self, "value", value)
100
+
101
+
102
+ class StackTag(pulumi.CustomResource):
103
+ @overload
104
+ def __init__(__self__,
105
+ resource_name: str,
106
+ opts: Optional[pulumi.ResourceOptions] = None,
107
+ name: Optional[pulumi.Input[str]] = None,
108
+ organization: Optional[pulumi.Input[str]] = None,
109
+ project: Optional[pulumi.Input[str]] = None,
110
+ stack: Optional[pulumi.Input[str]] = None,
111
+ value: Optional[pulumi.Input[str]] = None,
112
+ __props__=None):
113
+ """
114
+ Stacks have associated metadata in the form of tags. Each tag consists of a name and value.
115
+
116
+ :param str resource_name: The name of the resource.
117
+ :param pulumi.ResourceOptions opts: Options for the resource.
118
+ :param pulumi.Input[str] name: Name of the tag. The 'key' part of the key=value pair
119
+ :param pulumi.Input[str] organization: Organization name.
120
+ :param pulumi.Input[str] project: Project name.
121
+ :param pulumi.Input[str] stack: Stack name.
122
+ :param pulumi.Input[str] value: Value of the tag. The 'value' part of the key=value pair
123
+ """
124
+ ...
125
+ @overload
126
+ def __init__(__self__,
127
+ resource_name: str,
128
+ args: StackTagArgs,
129
+ opts: Optional[pulumi.ResourceOptions] = None):
130
+ """
131
+ Stacks have associated metadata in the form of tags. Each tag consists of a name and value.
132
+
133
+ :param str resource_name: The name of the resource.
134
+ :param StackTagArgs args: The arguments to use to populate this resource's properties.
135
+ :param pulumi.ResourceOptions opts: Options for the resource.
136
+ """
137
+ ...
138
+ def __init__(__self__, resource_name: str, *args, **kwargs):
139
+ resource_args, opts = _utilities.get_resource_args_opts(StackTagArgs, pulumi.ResourceOptions, *args, **kwargs)
140
+ if resource_args is not None:
141
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
142
+ else:
143
+ __self__._internal_init(resource_name, *args, **kwargs)
144
+
145
+ def _internal_init(__self__,
146
+ resource_name: str,
147
+ opts: Optional[pulumi.ResourceOptions] = None,
148
+ name: Optional[pulumi.Input[str]] = None,
149
+ organization: Optional[pulumi.Input[str]] = None,
150
+ project: Optional[pulumi.Input[str]] = None,
151
+ stack: Optional[pulumi.Input[str]] = None,
152
+ value: Optional[pulumi.Input[str]] = None,
153
+ __props__=None):
154
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
155
+ if not isinstance(opts, pulumi.ResourceOptions):
156
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
157
+ if opts.id is None:
158
+ if __props__ is not None:
159
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
160
+ __props__ = StackTagArgs.__new__(StackTagArgs)
161
+
162
+ if name is None and not opts.urn:
163
+ raise TypeError("Missing required property 'name'")
164
+ __props__.__dict__["name"] = name
165
+ if organization is None and not opts.urn:
166
+ raise TypeError("Missing required property 'organization'")
167
+ __props__.__dict__["organization"] = organization
168
+ if project is None and not opts.urn:
169
+ raise TypeError("Missing required property 'project'")
170
+ __props__.__dict__["project"] = project
171
+ if stack is None and not opts.urn:
172
+ raise TypeError("Missing required property 'stack'")
173
+ __props__.__dict__["stack"] = stack
174
+ if value is None and not opts.urn:
175
+ raise TypeError("Missing required property 'value'")
176
+ __props__.__dict__["value"] = value
177
+ super(StackTag, __self__).__init__(
178
+ 'pulumiservice:index:StackTag',
179
+ resource_name,
180
+ __props__,
181
+ opts)
182
+
183
+ @staticmethod
184
+ def get(resource_name: str,
185
+ id: pulumi.Input[str],
186
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'StackTag':
187
+ """
188
+ Get an existing StackTag resource's state with the given name, id, and optional extra
189
+ properties used to qualify the lookup.
190
+
191
+ :param str resource_name: The unique name of the resulting resource.
192
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
193
+ :param pulumi.ResourceOptions opts: Options for the resource.
194
+ """
195
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
196
+
197
+ __props__ = StackTagArgs.__new__(StackTagArgs)
198
+
199
+ __props__.__dict__["name"] = None
200
+ __props__.__dict__["organization"] = None
201
+ __props__.__dict__["project"] = None
202
+ __props__.__dict__["stack"] = None
203
+ __props__.__dict__["value"] = None
204
+ return StackTag(resource_name, opts=opts, __props__=__props__)
205
+
206
+ @property
207
+ @pulumi.getter
208
+ def name(self) -> pulumi.Output[str]:
209
+ """
210
+ Name of the tag. The 'key' part of the key=value pair
211
+ """
212
+ return pulumi.get(self, "name")
213
+
214
+ @property
215
+ @pulumi.getter
216
+ def organization(self) -> pulumi.Output[str]:
217
+ """
218
+ Organization name.
219
+ """
220
+ return pulumi.get(self, "organization")
221
+
222
+ @property
223
+ @pulumi.getter
224
+ def project(self) -> pulumi.Output[str]:
225
+ """
226
+ Project name.
227
+ """
228
+ return pulumi.get(self, "project")
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def stack(self) -> pulumi.Output[str]:
233
+ """
234
+ Stack name.
235
+ """
236
+ return pulumi.get(self, "stack")
237
+
238
+ @property
239
+ @pulumi.getter
240
+ def value(self) -> pulumi.Output[str]:
241
+ """
242
+ Value of the tag. The 'value' part of the key=value pair
243
+ """
244
+ return pulumi.get(self, "value")
245
+