pulumi-gcp 7.19.0__py3-none-any.whl → 7.19.0a1713292926__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 (41) hide show
  1. pulumi_gcp/__init__.py +0 -11
  2. pulumi_gcp/accesscontextmanager/access_policy.py +4 -4
  3. pulumi_gcp/apigee/sync_authorization.py +4 -4
  4. pulumi_gcp/compute/_inputs.py +0 -24
  5. pulumi_gcp/compute/get_router_nat.py +1 -11
  6. pulumi_gcp/compute/instance_settings.py +0 -16
  7. pulumi_gcp/compute/outputs.py +0 -41
  8. pulumi_gcp/compute/router_interface.py +0 -47
  9. pulumi_gcp/compute/router_nat.py +0 -68
  10. pulumi_gcp/compute/router_peer.py +0 -141
  11. pulumi_gcp/config/__init__.pyi +0 -2
  12. pulumi_gcp/config/vars.py +0 -4
  13. pulumi_gcp/container/_inputs.py +7 -48
  14. pulumi_gcp/container/outputs.py +8 -67
  15. pulumi_gcp/datastore/data_store_index.py +0 -14
  16. pulumi_gcp/dns/_inputs.py +22 -22
  17. pulumi_gcp/dns/outputs.py +22 -22
  18. pulumi_gcp/firestore/_inputs.py +11 -80
  19. pulumi_gcp/firestore/document.py +4 -0
  20. pulumi_gcp/firestore/index.py +42 -116
  21. pulumi_gcp/firestore/outputs.py +11 -70
  22. pulumi_gcp/gkebackup/_inputs.py +3 -358
  23. pulumi_gcp/gkebackup/backup_plan.py +0 -294
  24. pulumi_gcp/gkebackup/outputs.py +3 -353
  25. pulumi_gcp/networksecurity/firewall_endpoint.py +0 -2
  26. pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -61
  27. pulumi_gcp/provider.py +0 -20
  28. pulumi_gcp/sql/_inputs.py +0 -16
  29. pulumi_gcp/sql/outputs.py +0 -36
  30. pulumi_gcp/tags/__init__.py +0 -2
  31. pulumi_gcp/tags/outputs.py +0 -200
  32. pulumi_gcp/vmwareengine/get_private_cloud.py +1 -21
  33. pulumi_gcp/vmwareengine/private_cloud.py +7 -101
  34. {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/METADATA +1 -1
  35. {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/RECORD +37 -41
  36. pulumi_gcp/parallelstore/__init__.py +0 -8
  37. pulumi_gcp/parallelstore/instance.py +0 -1128
  38. pulumi_gcp/tags/get_tag_keys.py +0 -101
  39. pulumi_gcp/tags/get_tag_values.py +0 -101
  40. {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/WHEEL +0 -0
  41. {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/top_level.txt +0 -0
@@ -1,101 +0,0 @@
1
- # coding=utf-8
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
-
5
- import copy
6
- import warnings
7
- import pulumi
8
- import pulumi.runtime
9
- from typing import Any, Mapping, Optional, Sequence, Union, overload
10
- from .. import _utilities
11
- from . import outputs
12
-
13
- __all__ = [
14
- 'GetTagKeysResult',
15
- 'AwaitableGetTagKeysResult',
16
- 'get_tag_keys',
17
- 'get_tag_keys_output',
18
- ]
19
-
20
- @pulumi.output_type
21
- class GetTagKeysResult:
22
- """
23
- A collection of values returned by getTagKeys.
24
- """
25
- def __init__(__self__, id=None, keys=None, parent=None):
26
- if id and not isinstance(id, str):
27
- raise TypeError("Expected argument 'id' to be a str")
28
- pulumi.set(__self__, "id", id)
29
- if keys and not isinstance(keys, list):
30
- raise TypeError("Expected argument 'keys' to be a list")
31
- pulumi.set(__self__, "keys", keys)
32
- if parent and not isinstance(parent, str):
33
- raise TypeError("Expected argument 'parent' to be a str")
34
- pulumi.set(__self__, "parent", parent)
35
-
36
- @property
37
- @pulumi.getter
38
- def id(self) -> str:
39
- """
40
- The provider-assigned unique ID for this managed resource.
41
- """
42
- return pulumi.get(self, "id")
43
-
44
- @property
45
- @pulumi.getter
46
- def keys(self) -> Sequence['outputs.GetTagKeysKeyResult']:
47
- return pulumi.get(self, "keys")
48
-
49
- @property
50
- @pulumi.getter
51
- def parent(self) -> str:
52
- """
53
- The resource name of the TagKey's parent. A TagKey can be parented by an Orgination or a Project.
54
- """
55
- return pulumi.get(self, "parent")
56
-
57
-
58
- class AwaitableGetTagKeysResult(GetTagKeysResult):
59
- # pylint: disable=using-constant-test
60
- def __await__(self):
61
- if False:
62
- yield self
63
- return GetTagKeysResult(
64
- id=self.id,
65
- keys=self.keys,
66
- parent=self.parent)
67
-
68
-
69
- def get_tag_keys(parent: Optional[str] = None,
70
- opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTagKeysResult:
71
- """
72
- Get tag keys by org or project `parent`.
73
-
74
- ## Example Usage
75
-
76
-
77
- :param str parent: The resource name of the parent organization or project. It can be in format `organizations/{org_id}` or `projects/{project_id_or_number}`.
78
- """
79
- __args__ = dict()
80
- __args__['parent'] = parent
81
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
82
- __ret__ = pulumi.runtime.invoke('gcp:tags/getTagKeys:getTagKeys', __args__, opts=opts, typ=GetTagKeysResult).value
83
-
84
- return AwaitableGetTagKeysResult(
85
- id=pulumi.get(__ret__, 'id'),
86
- keys=pulumi.get(__ret__, 'keys'),
87
- parent=pulumi.get(__ret__, 'parent'))
88
-
89
-
90
- @_utilities.lift_output_func(get_tag_keys)
91
- def get_tag_keys_output(parent: Optional[pulumi.Input[str]] = None,
92
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTagKeysResult]:
93
- """
94
- Get tag keys by org or project `parent`.
95
-
96
- ## Example Usage
97
-
98
-
99
- :param str parent: The resource name of the parent organization or project. It can be in format `organizations/{org_id}` or `projects/{project_id_or_number}`.
100
- """
101
- ...
@@ -1,101 +0,0 @@
1
- # coding=utf-8
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
-
5
- import copy
6
- import warnings
7
- import pulumi
8
- import pulumi.runtime
9
- from typing import Any, Mapping, Optional, Sequence, Union, overload
10
- from .. import _utilities
11
- from . import outputs
12
-
13
- __all__ = [
14
- 'GetTagValuesResult',
15
- 'AwaitableGetTagValuesResult',
16
- 'get_tag_values',
17
- 'get_tag_values_output',
18
- ]
19
-
20
- @pulumi.output_type
21
- class GetTagValuesResult:
22
- """
23
- A collection of values returned by getTagValues.
24
- """
25
- def __init__(__self__, id=None, parent=None, values=None):
26
- if id and not isinstance(id, str):
27
- raise TypeError("Expected argument 'id' to be a str")
28
- pulumi.set(__self__, "id", id)
29
- if parent and not isinstance(parent, str):
30
- raise TypeError("Expected argument 'parent' to be a str")
31
- pulumi.set(__self__, "parent", parent)
32
- if values and not isinstance(values, list):
33
- raise TypeError("Expected argument 'values' to be a list")
34
- pulumi.set(__self__, "values", values)
35
-
36
- @property
37
- @pulumi.getter
38
- def id(self) -> str:
39
- """
40
- The provider-assigned unique ID for this managed resource.
41
- """
42
- return pulumi.get(self, "id")
43
-
44
- @property
45
- @pulumi.getter
46
- def parent(self) -> str:
47
- """
48
- The resource name of the new TagValue's parent TagKey. Must be of the form tagKeys/{tag_key_id}.
49
- """
50
- return pulumi.get(self, "parent")
51
-
52
- @property
53
- @pulumi.getter
54
- def values(self) -> Sequence['outputs.GetTagValuesValueResult']:
55
- return pulumi.get(self, "values")
56
-
57
-
58
- class AwaitableGetTagValuesResult(GetTagValuesResult):
59
- # pylint: disable=using-constant-test
60
- def __await__(self):
61
- if False:
62
- yield self
63
- return GetTagValuesResult(
64
- id=self.id,
65
- parent=self.parent,
66
- values=self.values)
67
-
68
-
69
- def get_tag_values(parent: Optional[str] = None,
70
- opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTagValuesResult:
71
- """
72
- Get tag values from a `parent` key.
73
-
74
- ## Example Usage
75
-
76
-
77
- :param str parent: The resource name of the parent tagKey in format `tagKey/{name}`.
78
- """
79
- __args__ = dict()
80
- __args__['parent'] = parent
81
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
82
- __ret__ = pulumi.runtime.invoke('gcp:tags/getTagValues:getTagValues', __args__, opts=opts, typ=GetTagValuesResult).value
83
-
84
- return AwaitableGetTagValuesResult(
85
- id=pulumi.get(__ret__, 'id'),
86
- parent=pulumi.get(__ret__, 'parent'),
87
- values=pulumi.get(__ret__, 'values'))
88
-
89
-
90
- @_utilities.lift_output_func(get_tag_values)
91
- def get_tag_values_output(parent: Optional[pulumi.Input[str]] = None,
92
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTagValuesResult]:
93
- """
94
- Get tag values from a `parent` key.
95
-
96
- ## Example Usage
97
-
98
-
99
- :param str parent: The resource name of the parent tagKey in format `tagKey/{name}`.
100
- """
101
- ...