pulumi-signalfx 7.17.0a1756363016__py3-none-any.whl → 7.17.0a1757042560__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.
- pulumi_signalfx/_inputs.py +18 -18
- pulumi_signalfx/aws/integration.py +4 -8
- pulumi_signalfx/config/__init__.pyi +3 -6
- pulumi_signalfx/config/vars.py +3 -6
- pulumi_signalfx/outputs.py +12 -12
- pulumi_signalfx/provider.py +11 -22
- pulumi_signalfx/pulumi-plugin.json +1 -1
- {pulumi_signalfx-7.17.0a1756363016.dist-info → pulumi_signalfx-7.17.0a1757042560.dist-info}/METADATA +1 -1
- {pulumi_signalfx-7.17.0a1756363016.dist-info → pulumi_signalfx-7.17.0a1757042560.dist-info}/RECORD +11 -11
- {pulumi_signalfx-7.17.0a1756363016.dist-info → pulumi_signalfx-7.17.0a1757042560.dist-info}/WHEEL +0 -0
- {pulumi_signalfx-7.17.0a1756363016.dist-info → pulumi_signalfx-7.17.0a1757042560.dist-info}/top_level.txt +0 -0
pulumi_signalfx/_inputs.py
CHANGED
@@ -847,7 +847,7 @@ if not MYPY:
|
|
847
847
|
"""
|
848
848
|
variable_overrides: NotRequired[pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardVariableOverrideArgsDict']]]]
|
849
849
|
"""
|
850
|
-
|
850
|
+
The description that will override the original dashboards's description.
|
851
851
|
"""
|
852
852
|
elif False:
|
853
853
|
DashboardGroupDashboardArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -867,7 +867,7 @@ class DashboardGroupDashboardArgs:
|
|
867
867
|
:param pulumi.Input[_builtins.str] description_override: The description that will override the original dashboards's description.
|
868
868
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardFilterOverrideArgs']]] filter_overrides: The description that will override the original dashboards's description.
|
869
869
|
:param pulumi.Input[_builtins.str] name_override: The name that will override the original dashboards's name.
|
870
|
-
:param pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardVariableOverrideArgs']]] variable_overrides:
|
870
|
+
:param pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardVariableOverrideArgs']]] variable_overrides: The description that will override the original dashboards's description.
|
871
871
|
"""
|
872
872
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
873
873
|
if config_id is not None:
|
@@ -945,7 +945,7 @@ class DashboardGroupDashboardArgs:
|
|
945
945
|
@pulumi.getter(name="variableOverrides")
|
946
946
|
def variable_overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardVariableOverrideArgs']]]]:
|
947
947
|
"""
|
948
|
-
|
948
|
+
The description that will override the original dashboards's description.
|
949
949
|
"""
|
950
950
|
return pulumi.get(self, "variable_overrides")
|
951
951
|
|
@@ -958,11 +958,11 @@ if not MYPY:
|
|
958
958
|
class DashboardGroupDashboardFilterOverrideArgsDict(TypedDict):
|
959
959
|
property: pulumi.Input[_builtins.str]
|
960
960
|
"""
|
961
|
-
|
961
|
+
The name of a dimension to filter against.
|
962
962
|
"""
|
963
963
|
values: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
964
964
|
"""
|
965
|
-
|
965
|
+
A list of values to be used with the `property`, they will be combined via `OR`.
|
966
966
|
"""
|
967
967
|
negated: NotRequired[pulumi.Input[_builtins.bool]]
|
968
968
|
"""
|
@@ -978,8 +978,8 @@ class DashboardGroupDashboardFilterOverrideArgs:
|
|
978
978
|
values: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
979
979
|
negated: Optional[pulumi.Input[_builtins.bool]] = None):
|
980
980
|
"""
|
981
|
-
:param pulumi.Input[_builtins.str] property:
|
982
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values:
|
981
|
+
:param pulumi.Input[_builtins.str] property: The name of a dimension to filter against.
|
982
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: A list of values to be used with the `property`, they will be combined via `OR`.
|
983
983
|
:param pulumi.Input[_builtins.bool] negated: If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
|
984
984
|
"""
|
985
985
|
pulumi.set(__self__, "property", property)
|
@@ -991,7 +991,7 @@ class DashboardGroupDashboardFilterOverrideArgs:
|
|
991
991
|
@pulumi.getter
|
992
992
|
def property(self) -> pulumi.Input[_builtins.str]:
|
993
993
|
"""
|
994
|
-
|
994
|
+
The name of a dimension to filter against.
|
995
995
|
"""
|
996
996
|
return pulumi.get(self, "property")
|
997
997
|
|
@@ -1003,7 +1003,7 @@ class DashboardGroupDashboardFilterOverrideArgs:
|
|
1003
1003
|
@pulumi.getter
|
1004
1004
|
def values(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
1005
1005
|
"""
|
1006
|
-
|
1006
|
+
A list of values to be used with the `property`, they will be combined via `OR`.
|
1007
1007
|
"""
|
1008
1008
|
return pulumi.get(self, "values")
|
1009
1009
|
|
@@ -1028,15 +1028,15 @@ if not MYPY:
|
|
1028
1028
|
class DashboardGroupDashboardVariableOverrideArgsDict(TypedDict):
|
1029
1029
|
property: pulumi.Input[_builtins.str]
|
1030
1030
|
"""
|
1031
|
-
A metric time series dimension or property name
|
1031
|
+
A metric time series dimension or property name.
|
1032
1032
|
"""
|
1033
1033
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
1034
1034
|
"""
|
1035
|
-
List of strings (which will be treated as an OR filter on the property)
|
1035
|
+
(Optional) List of of strings (which will be treated as an OR filter on the property).
|
1036
1036
|
"""
|
1037
1037
|
values_suggesteds: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
1038
1038
|
"""
|
1039
|
-
A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable
|
1039
|
+
A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
|
1040
1040
|
"""
|
1041
1041
|
elif False:
|
1042
1042
|
DashboardGroupDashboardVariableOverrideArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1048,9 +1048,9 @@ class DashboardGroupDashboardVariableOverrideArgs:
|
|
1048
1048
|
values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1049
1049
|
values_suggesteds: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
1050
1050
|
"""
|
1051
|
-
:param pulumi.Input[_builtins.str] property: A metric time series dimension or property name
|
1052
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: List of strings (which will be treated as an OR filter on the property)
|
1053
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values_suggesteds: A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable
|
1051
|
+
:param pulumi.Input[_builtins.str] property: A metric time series dimension or property name.
|
1052
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: (Optional) List of of strings (which will be treated as an OR filter on the property).
|
1053
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values_suggesteds: A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
|
1054
1054
|
"""
|
1055
1055
|
pulumi.set(__self__, "property", property)
|
1056
1056
|
if values is not None:
|
@@ -1062,7 +1062,7 @@ class DashboardGroupDashboardVariableOverrideArgs:
|
|
1062
1062
|
@pulumi.getter
|
1063
1063
|
def property(self) -> pulumi.Input[_builtins.str]:
|
1064
1064
|
"""
|
1065
|
-
A metric time series dimension or property name
|
1065
|
+
A metric time series dimension or property name.
|
1066
1066
|
"""
|
1067
1067
|
return pulumi.get(self, "property")
|
1068
1068
|
|
@@ -1074,7 +1074,7 @@ class DashboardGroupDashboardVariableOverrideArgs:
|
|
1074
1074
|
@pulumi.getter
|
1075
1075
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
1076
1076
|
"""
|
1077
|
-
List of strings (which will be treated as an OR filter on the property)
|
1077
|
+
(Optional) List of of strings (which will be treated as an OR filter on the property).
|
1078
1078
|
"""
|
1079
1079
|
return pulumi.get(self, "values")
|
1080
1080
|
|
@@ -1086,7 +1086,7 @@ class DashboardGroupDashboardVariableOverrideArgs:
|
|
1086
1086
|
@pulumi.getter(name="valuesSuggesteds")
|
1087
1087
|
def values_suggesteds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
1088
1088
|
"""
|
1089
|
-
A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable
|
1089
|
+
A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
|
1090
1090
|
"""
|
1091
1091
|
return pulumi.get(self, "values_suggesteds")
|
1092
1092
|
|
@@ -404,8 +404,7 @@ class _IntegrationState:
|
|
404
404
|
use_metric_streams_sync: Optional[pulumi.Input[_builtins.bool]] = None):
|
405
405
|
"""
|
406
406
|
Input properties used for looking up and filtering Integration resources.
|
407
|
-
:param pulumi.Input[_builtins.str] auth_method: The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define
|
408
|
-
this
|
407
|
+
:param pulumi.Input[_builtins.str] auth_method: The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define this
|
409
408
|
:param pulumi.Input[_builtins.bool] collect_only_recommended_stats: The integration will only ingest the recommended statistics published by AWS
|
410
409
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] custom_cloudwatch_namespaces: List of custom AWS CloudWatch namespaces to monitor. Custom namespaces contain custom metrics that you define in AWS; Splunk Observability Cloud imports the metrics so you can monitor them.
|
411
410
|
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespaceSyncRuleArgs']]] custom_namespace_sync_rules: Each element controls the data collected by Splunk Observability Cloud for the specified namespace. Conflicts with the `custom_cloudwatch_namespaces` property.
|
@@ -483,8 +482,7 @@ class _IntegrationState:
|
|
483
482
|
@pulumi.getter(name="authMethod")
|
484
483
|
def auth_method(self) -> Optional[pulumi.Input[_builtins.str]]:
|
485
484
|
"""
|
486
|
-
The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define
|
487
|
-
this
|
485
|
+
The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define this
|
488
486
|
"""
|
489
487
|
return pulumi.get(self, "auth_method")
|
490
488
|
|
@@ -1040,8 +1038,7 @@ class Integration(pulumi.CustomResource):
|
|
1040
1038
|
:param str resource_name: The unique name of the resulting resource.
|
1041
1039
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1042
1040
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1043
|
-
:param pulumi.Input[_builtins.str] auth_method: The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define
|
1044
|
-
this
|
1041
|
+
:param pulumi.Input[_builtins.str] auth_method: The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define this
|
1045
1042
|
:param pulumi.Input[_builtins.bool] collect_only_recommended_stats: The integration will only ingest the recommended statistics published by AWS
|
1046
1043
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] custom_cloudwatch_namespaces: List of custom AWS CloudWatch namespaces to monitor. Custom namespaces contain custom metrics that you define in AWS; Splunk Observability Cloud imports the metrics so you can monitor them.
|
1047
1044
|
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespaceSyncRuleArgs', 'IntegrationCustomNamespaceSyncRuleArgsDict']]]] custom_namespace_sync_rules: Each element controls the data collected by Splunk Observability Cloud for the specified namespace. Conflicts with the `custom_cloudwatch_namespaces` property.
|
@@ -1100,8 +1097,7 @@ class Integration(pulumi.CustomResource):
|
|
1100
1097
|
@pulumi.getter(name="authMethod")
|
1101
1098
|
def auth_method(self) -> pulumi.Output[_builtins.str]:
|
1102
1099
|
"""
|
1103
|
-
The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define
|
1104
|
-
this
|
1100
|
+
The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define this
|
1105
1101
|
"""
|
1106
1102
|
return pulumi.get(self, "auth_method")
|
1107
1103
|
|
@@ -31,8 +31,7 @@ Application URL for your Splunk Observability Cloud org, often customized for or
|
|
31
31
|
|
32
32
|
email: Optional[str]
|
33
33
|
"""
|
34
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
35
|
-
Password
|
34
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
36
35
|
"""
|
37
36
|
|
38
37
|
featurePreview: Optional[str]
|
@@ -47,8 +46,7 @@ Required if the user is configured to be part of multiple organizations
|
|
47
46
|
|
48
47
|
password: Optional[str]
|
49
48
|
"""
|
50
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
51
|
-
Password
|
49
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
52
50
|
"""
|
53
51
|
|
54
52
|
retryMaxAttempts: Optional[int]
|
@@ -68,8 +66,7 @@ Minimum retry wait for a single HTTP call in seconds. Defaults to 1
|
|
68
66
|
|
69
67
|
tags: Optional[str]
|
70
68
|
"""
|
71
|
-
Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags
|
72
|
-
configured, the global tags are added in prefix.
|
69
|
+
Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags configured, the global tags are added in prefix.
|
73
70
|
"""
|
74
71
|
|
75
72
|
teams: Optional[str]
|
pulumi_signalfx/config/vars.py
CHANGED
@@ -44,8 +44,7 @@ class _ExportableConfig(types.ModuleType):
|
|
44
44
|
@_builtins.property
|
45
45
|
def email(self) -> Optional[str]:
|
46
46
|
"""
|
47
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
48
|
-
Password
|
47
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
49
48
|
"""
|
50
49
|
return __config__.get('email')
|
51
50
|
|
@@ -66,8 +65,7 @@ class _ExportableConfig(types.ModuleType):
|
|
66
65
|
@_builtins.property
|
67
66
|
def password(self) -> Optional[str]:
|
68
67
|
"""
|
69
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
70
|
-
Password
|
68
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
71
69
|
"""
|
72
70
|
return __config__.get('password')
|
73
71
|
|
@@ -95,8 +93,7 @@ class _ExportableConfig(types.ModuleType):
|
|
95
93
|
@_builtins.property
|
96
94
|
def tags(self) -> Optional[str]:
|
97
95
|
"""
|
98
|
-
Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags
|
99
|
-
configured, the global tags are added in prefix.
|
96
|
+
Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags configured, the global tags are added in prefix.
|
100
97
|
"""
|
101
98
|
return __config__.get('tags')
|
102
99
|
|
pulumi_signalfx/outputs.py
CHANGED
@@ -609,7 +609,7 @@ class DashboardGroupDashboard(dict):
|
|
609
609
|
:param _builtins.str description_override: The description that will override the original dashboards's description.
|
610
610
|
:param Sequence['DashboardGroupDashboardFilterOverrideArgs'] filter_overrides: The description that will override the original dashboards's description.
|
611
611
|
:param _builtins.str name_override: The name that will override the original dashboards's name.
|
612
|
-
:param Sequence['DashboardGroupDashboardVariableOverrideArgs'] variable_overrides:
|
612
|
+
:param Sequence['DashboardGroupDashboardVariableOverrideArgs'] variable_overrides: The description that will override the original dashboards's description.
|
613
613
|
"""
|
614
614
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
615
615
|
if config_id is not None:
|
@@ -667,7 +667,7 @@ class DashboardGroupDashboard(dict):
|
|
667
667
|
@pulumi.getter(name="variableOverrides")
|
668
668
|
def variable_overrides(self) -> Optional[Sequence['outputs.DashboardGroupDashboardVariableOverride']]:
|
669
669
|
"""
|
670
|
-
|
670
|
+
The description that will override the original dashboards's description.
|
671
671
|
"""
|
672
672
|
return pulumi.get(self, "variable_overrides")
|
673
673
|
|
@@ -679,8 +679,8 @@ class DashboardGroupDashboardFilterOverride(dict):
|
|
679
679
|
values: Sequence[_builtins.str],
|
680
680
|
negated: Optional[_builtins.bool] = None):
|
681
681
|
"""
|
682
|
-
:param _builtins.str property:
|
683
|
-
:param Sequence[_builtins.str] values:
|
682
|
+
:param _builtins.str property: The name of a dimension to filter against.
|
683
|
+
:param Sequence[_builtins.str] values: A list of values to be used with the `property`, they will be combined via `OR`.
|
684
684
|
:param _builtins.bool negated: If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
|
685
685
|
"""
|
686
686
|
pulumi.set(__self__, "property", property)
|
@@ -692,7 +692,7 @@ class DashboardGroupDashboardFilterOverride(dict):
|
|
692
692
|
@pulumi.getter
|
693
693
|
def property(self) -> _builtins.str:
|
694
694
|
"""
|
695
|
-
|
695
|
+
The name of a dimension to filter against.
|
696
696
|
"""
|
697
697
|
return pulumi.get(self, "property")
|
698
698
|
|
@@ -700,7 +700,7 @@ class DashboardGroupDashboardFilterOverride(dict):
|
|
700
700
|
@pulumi.getter
|
701
701
|
def values(self) -> Sequence[_builtins.str]:
|
702
702
|
"""
|
703
|
-
|
703
|
+
A list of values to be used with the `property`, they will be combined via `OR`.
|
704
704
|
"""
|
705
705
|
return pulumi.get(self, "values")
|
706
706
|
|
@@ -737,9 +737,9 @@ class DashboardGroupDashboardVariableOverride(dict):
|
|
737
737
|
values: Optional[Sequence[_builtins.str]] = None,
|
738
738
|
values_suggesteds: Optional[Sequence[_builtins.str]] = None):
|
739
739
|
"""
|
740
|
-
:param _builtins.str property: A metric time series dimension or property name
|
741
|
-
:param Sequence[_builtins.str] values: List of strings (which will be treated as an OR filter on the property)
|
742
|
-
:param Sequence[_builtins.str] values_suggesteds: A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable
|
740
|
+
:param _builtins.str property: A metric time series dimension or property name.
|
741
|
+
:param Sequence[_builtins.str] values: (Optional) List of of strings (which will be treated as an OR filter on the property).
|
742
|
+
:param Sequence[_builtins.str] values_suggesteds: A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
|
743
743
|
"""
|
744
744
|
pulumi.set(__self__, "property", property)
|
745
745
|
if values is not None:
|
@@ -751,7 +751,7 @@ class DashboardGroupDashboardVariableOverride(dict):
|
|
751
751
|
@pulumi.getter
|
752
752
|
def property(self) -> _builtins.str:
|
753
753
|
"""
|
754
|
-
A metric time series dimension or property name
|
754
|
+
A metric time series dimension or property name.
|
755
755
|
"""
|
756
756
|
return pulumi.get(self, "property")
|
757
757
|
|
@@ -759,7 +759,7 @@ class DashboardGroupDashboardVariableOverride(dict):
|
|
759
759
|
@pulumi.getter
|
760
760
|
def values(self) -> Optional[Sequence[_builtins.str]]:
|
761
761
|
"""
|
762
|
-
List of strings (which will be treated as an OR filter on the property)
|
762
|
+
(Optional) List of of strings (which will be treated as an OR filter on the property).
|
763
763
|
"""
|
764
764
|
return pulumi.get(self, "values")
|
765
765
|
|
@@ -767,7 +767,7 @@ class DashboardGroupDashboardVariableOverride(dict):
|
|
767
767
|
@pulumi.getter(name="valuesSuggesteds")
|
768
768
|
def values_suggesteds(self) -> Optional[Sequence[_builtins.str]]:
|
769
769
|
"""
|
770
|
-
A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable
|
770
|
+
A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
|
771
771
|
"""
|
772
772
|
return pulumi.get(self, "values_suggesteds")
|
773
773
|
|
pulumi_signalfx/provider.py
CHANGED
@@ -37,17 +37,14 @@ class ProviderArgs:
|
|
37
37
|
:param pulumi.Input[_builtins.str] api_url: API URL for your Splunk Observability Cloud org, may include a realm
|
38
38
|
:param pulumi.Input[_builtins.str] auth_token: Splunk Observability Cloud auth token
|
39
39
|
:param pulumi.Input[_builtins.str] custom_app_url: Application URL for your Splunk Observability Cloud org, often customized for organizations using SSO
|
40
|
-
:param pulumi.Input[_builtins.str] email: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
41
|
-
Password
|
40
|
+
:param pulumi.Input[_builtins.str] email: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
42
41
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.bool]]] feature_preview: Allows for users to opt-in to new features that are considered experimental or not ready for general availability yet.
|
43
42
|
:param pulumi.Input[_builtins.str] organization_id: Required if the user is configured to be part of multiple organizations
|
44
|
-
:param pulumi.Input[_builtins.str] password: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
45
|
-
Password
|
43
|
+
:param pulumi.Input[_builtins.str] password: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
46
44
|
:param pulumi.Input[_builtins.int] retry_max_attempts: Max retries for a single HTTP call. Defaults to 4
|
47
45
|
:param pulumi.Input[_builtins.int] retry_wait_max_seconds: Maximum retry wait for a single HTTP call in seconds. Defaults to 30
|
48
46
|
:param pulumi.Input[_builtins.int] retry_wait_min_seconds: Minimum retry wait for a single HTTP call in seconds. Defaults to 1
|
49
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags
|
50
|
-
configured, the global tags are added in prefix.
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags configured, the global tags are added in prefix.
|
51
48
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] teams: Allows for teams to be defined at a provider level, and apply to all applicable resources created.
|
52
49
|
:param pulumi.Input[_builtins.int] timeout_seconds: Timeout duration for a single HTTP call in seconds. Defaults to 120
|
53
50
|
"""
|
@@ -122,8 +119,7 @@ class ProviderArgs:
|
|
122
119
|
@pulumi.getter
|
123
120
|
def email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
124
121
|
"""
|
125
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
126
|
-
Password
|
122
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
127
123
|
"""
|
128
124
|
return pulumi.get(self, "email")
|
129
125
|
|
@@ -159,8 +155,7 @@ class ProviderArgs:
|
|
159
155
|
@pulumi.getter
|
160
156
|
def password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
161
157
|
"""
|
162
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
163
|
-
Password
|
158
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
164
159
|
"""
|
165
160
|
return pulumi.get(self, "password")
|
166
161
|
|
@@ -208,8 +203,7 @@ class ProviderArgs:
|
|
208
203
|
@pulumi.getter
|
209
204
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
210
205
|
"""
|
211
|
-
Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags
|
212
|
-
configured, the global tags are added in prefix.
|
206
|
+
Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags configured, the global tags are added in prefix.
|
213
207
|
"""
|
214
208
|
return pulumi.get(self, "tags")
|
215
209
|
|
@@ -273,17 +267,14 @@ class Provider(pulumi.ProviderResource):
|
|
273
267
|
:param pulumi.Input[_builtins.str] api_url: API URL for your Splunk Observability Cloud org, may include a realm
|
274
268
|
:param pulumi.Input[_builtins.str] auth_token: Splunk Observability Cloud auth token
|
275
269
|
:param pulumi.Input[_builtins.str] custom_app_url: Application URL for your Splunk Observability Cloud org, often customized for organizations using SSO
|
276
|
-
:param pulumi.Input[_builtins.str] email: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
277
|
-
Password
|
270
|
+
:param pulumi.Input[_builtins.str] email: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
278
271
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.bool]]] feature_preview: Allows for users to opt-in to new features that are considered experimental or not ready for general availability yet.
|
279
272
|
:param pulumi.Input[_builtins.str] organization_id: Required if the user is configured to be part of multiple organizations
|
280
|
-
:param pulumi.Input[_builtins.str] password: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
281
|
-
Password
|
273
|
+
:param pulumi.Input[_builtins.str] password: Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
282
274
|
:param pulumi.Input[_builtins.int] retry_max_attempts: Max retries for a single HTTP call. Defaults to 4
|
283
275
|
:param pulumi.Input[_builtins.int] retry_wait_max_seconds: Maximum retry wait for a single HTTP call in seconds. Defaults to 30
|
284
276
|
:param pulumi.Input[_builtins.int] retry_wait_min_seconds: Minimum retry wait for a single HTTP call in seconds. Defaults to 1
|
285
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags
|
286
|
-
configured, the global tags are added in prefix.
|
277
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags configured, the global tags are added in prefix.
|
287
278
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] teams: Allows for teams to be defined at a provider level, and apply to all applicable resources created.
|
288
279
|
:param pulumi.Input[_builtins.int] timeout_seconds: Timeout duration for a single HTTP call in seconds. Defaults to 120
|
289
280
|
"""
|
@@ -386,8 +377,7 @@ class Provider(pulumi.ProviderResource):
|
|
386
377
|
@pulumi.getter
|
387
378
|
def email(self) -> pulumi.Output[Optional[_builtins.str]]:
|
388
379
|
"""
|
389
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
390
|
-
Password
|
380
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
391
381
|
"""
|
392
382
|
return pulumi.get(self, "email")
|
393
383
|
|
@@ -403,8 +393,7 @@ class Provider(pulumi.ProviderResource):
|
|
403
393
|
@pulumi.getter
|
404
394
|
def password(self) -> pulumi.Output[Optional[_builtins.str]]:
|
405
395
|
"""
|
406
|
-
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
407
|
-
Password
|
396
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
|
408
397
|
"""
|
409
398
|
return pulumi.get(self, "password")
|
410
399
|
|
{pulumi_signalfx-7.17.0a1756363016.dist-info → pulumi_signalfx-7.17.0a1757042560.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
pulumi_signalfx/__init__.py,sha256=B-QEzkKJLJBqmG0QcdHVNEOTMmzvPTrbkqBs4LlOct8,8345
|
2
|
-
pulumi_signalfx/_inputs.py,sha256=
|
2
|
+
pulumi_signalfx/_inputs.py,sha256=jgyVRSDZzXzOXkQxPmbPknhuPxg2nHL2vAO2l9828pM,259520
|
3
3
|
pulumi_signalfx/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
4
4
|
pulumi_signalfx/alert_muting_rule.py,sha256=31ALjqUPcXpJBqRjbuhrOaKqksm6a6hK-cfMzelyF38,23725
|
5
5
|
pulumi_signalfx/dashboard.py,sha256=6ZpblDvws6b4ir-gaFjNzqwMhWc-hneeL5uvFgHWgFg,64207
|
@@ -13,9 +13,9 @@ pulumi_signalfx/list_chart.py,sha256=b78MlBx3CZ9N3TICupqeScw5HbfmHaDCb0LE254vV2k
|
|
13
13
|
pulumi_signalfx/metric_ruleset.py,sha256=j_PQRDKJ8lt4p7WtCRiGH3HlOiX2ZQpTr--JJmnfxG8,28494
|
14
14
|
pulumi_signalfx/org_token.py,sha256=oYsLck67gbosUWDRKLw88tSdpOtCWoMns6_ucsjf_58,24508
|
15
15
|
pulumi_signalfx/organization_members.py,sha256=UJ38vcL3PyfIcMjW40T1fKlwVa1K4yhlnjfF5WyWYt4,3834
|
16
|
-
pulumi_signalfx/outputs.py,sha256
|
17
|
-
pulumi_signalfx/provider.py,sha256=
|
18
|
-
pulumi_signalfx/pulumi-plugin.json,sha256
|
16
|
+
pulumi_signalfx/outputs.py,sha256=p5DVgeG39avBDEEbH0hkq1J252SrJQxf78Pl3X2E1Qo,179932
|
17
|
+
pulumi_signalfx/provider.py,sha256=JcczR5Oygj69zaAd-TJf_AyJFuzknLLRQUzhrNAOZYc,23101
|
18
|
+
pulumi_signalfx/pulumi-plugin.json,sha256=uS-wcfGfHj1DDMJrZS3-Z1gCaaCM_MqX371bfuYOhK8,85
|
19
19
|
pulumi_signalfx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
pulumi_signalfx/single_value_chart.py,sha256=ALNXhAGiNTzCBV8_n9Amq5K93Nek1Bh9mR2ZN_OBhHI,45017
|
21
21
|
pulumi_signalfx/slo.py,sha256=hAwZZ025BiWFxQzk22EuDqpPPiJOeM2v1Nj3QTBgWxk,19804
|
@@ -33,7 +33,7 @@ pulumi_signalfx/automatedarchival/settings.py,sha256=EzarmpJEWKO_e7lOKvhsydgP7Sf
|
|
33
33
|
pulumi_signalfx/aws/__init__.py,sha256=itTgt0Sj52DvpUrXtc84TXJjOidSWNliHLEAkw9FXkk,421
|
34
34
|
pulumi_signalfx/aws/_inputs.py,sha256=1ZXOBBCwACf4lFiugPFvCO2K1_4RWiCjQmZVpQ1YlvI,15081
|
35
35
|
pulumi_signalfx/aws/external_integration.py,sha256=-aZeBngF2vjgGNvQQnUvZ2bhsIH6TzS3Fq83JN4NwyI,8991
|
36
|
-
pulumi_signalfx/aws/integration.py,sha256=
|
36
|
+
pulumi_signalfx/aws/integration.py,sha256=QJyFLkbb7MhBxAnRBJVl8J09sP-jmPdNmnIrLZhgBNA,92775
|
37
37
|
pulumi_signalfx/aws/outputs.py,sha256=SLhxRlSGaaGlWjYpOrzjQfvCk-HnfZNPLAI94qifxNY,10789
|
38
38
|
pulumi_signalfx/aws/token_integration.py,sha256=5szYUvi7MknO8eSWeigIWS9H3XwULrsEyKYJXFtDozU,12429
|
39
39
|
pulumi_signalfx/azure/__init__.py,sha256=pB-1Ow5Zx3xAXBrtzCIvKGcjevGZ5e5xCTuDgGWO208,352
|
@@ -41,8 +41,8 @@ pulumi_signalfx/azure/_inputs.py,sha256=TMoSTQdn4Mdb53mpCCQPAnClD2XLMuU4KsVo_shb
|
|
41
41
|
pulumi_signalfx/azure/integration.py,sha256=7IZN19C0Jp-Igr_JrtdJoU6gU8HR38uSKVc6F92UXh0,62010
|
42
42
|
pulumi_signalfx/azure/outputs.py,sha256=isFIFkH6bLOeGsvWrExDIYqN2eY-ejX3PI5YeNVZF1k,3406
|
43
43
|
pulumi_signalfx/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
44
|
-
pulumi_signalfx/config/__init__.pyi,sha256=
|
45
|
-
pulumi_signalfx/config/vars.py,sha256=
|
44
|
+
pulumi_signalfx/config/__init__.pyi,sha256=PsR3IOioqOjJgyU-rbh7jRi4fMzmCgG-tyM-mFFnoXo,2164
|
45
|
+
pulumi_signalfx/config/vars.py,sha256=GxyY_PJc07hMPxVdrUF6enbOygWKIiuHpAQ5g99pzMg,3725
|
46
46
|
pulumi_signalfx/gcp/__init__.py,sha256=pB-1Ow5Zx3xAXBrtzCIvKGcjevGZ5e5xCTuDgGWO208,352
|
47
47
|
pulumi_signalfx/gcp/_inputs.py,sha256=66xhOuJUqdTPMSIWmb6dbZ3DtMq4tC0GfpyBsBUtIAQ,3050
|
48
48
|
pulumi_signalfx/gcp/integration.py,sha256=ZpOPstWbTUXtk8CbRYw43AXuT1GruROyW4J9JSPaInk,45132
|
@@ -65,7 +65,7 @@ pulumi_signalfx/slack/__init__.py,sha256=yt8kZT9XbvEEi7wXcoghXeZFVg5mOa9Fvs2vDC1
|
|
65
65
|
pulumi_signalfx/slack/integration.py,sha256=7v4tTKYpXlLQlmGaO5DUK8nDPouuK5I7yf0COAmxNJc,11175
|
66
66
|
pulumi_signalfx/victorops/__init__.py,sha256=yt8kZT9XbvEEi7wXcoghXeZFVg5mOa9Fvs2vDC19b7k,307
|
67
67
|
pulumi_signalfx/victorops/integration.py,sha256=geKWFhfkzZOh0cyN4-p5n46xJHyxoT8HTAnT903yY5A,11024
|
68
|
-
pulumi_signalfx-7.17.
|
69
|
-
pulumi_signalfx-7.17.
|
70
|
-
pulumi_signalfx-7.17.
|
71
|
-
pulumi_signalfx-7.17.
|
68
|
+
pulumi_signalfx-7.17.0a1757042560.dist-info/METADATA,sha256=4atJjYE7j7AzJvfwSSqGah0swXZVYOgT3sqnyRZEVAo,3094
|
69
|
+
pulumi_signalfx-7.17.0a1757042560.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
70
|
+
pulumi_signalfx-7.17.0a1757042560.dist-info/top_level.txt,sha256=96zW1Lm-bEkyaNlSwcR6g0cPvusFulK_kulBOfoN6DI,16
|
71
|
+
pulumi_signalfx-7.17.0a1757042560.dist-info/RECORD,,
|
{pulumi_signalfx-7.17.0a1756363016.dist-info → pulumi_signalfx-7.17.0a1757042560.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|