You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Aspire.Hosting.Azure.Network/Aspire.Hosting.Azure.AzureNspAccessRule # Represents an access rule configuration for an Azure Network Security Perimeter.
15
15
AddressPrefixes?: Aspire.Hosting/List<string> # Gets the list of inbound address prefixes (CIDR ranges) allowed by this rule.
16
-
AddressPrefixReferences?: Aspire.Hosting/List<Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression> # Gets the list of inbound address prefixes (CIDR ranges) values allowed by this rule.
16
+
AddressPrefixReferences?: Aspire.Hosting/List<Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression> # Gets the list of inbound address prefixes (CIDR ranges) `ReferenceExpression` values allowed by this rule.
17
17
Direction: enum:Azure.Provisioning.Network.NetworkSecurityPerimeterAccessRuleDirection # Gets or sets the direction of the rule.
18
-
FullyQualifiedDomainNameReferences?: Aspire.Hosting/List<Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression> # Gets the fully qualified domain name values allowed by this rule.
18
+
FullyQualifiedDomainNameReferences?: Aspire.Hosting/List<Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression> # Gets the fully qualified domain name `ReferenceExpression` values allowed by this rule.
19
19
FullyQualifiedDomainNames?: Aspire.Hosting/List<string> # Gets the list of fully qualified domain names (FQDNs) allowed by this rule.
20
20
Name: string # Gets or sets the name of the access rule. This name must be unique within the perimeter profile.
21
-
SubscriptionReferences?: Aspire.Hosting/List<Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression> # Gets the subscription resource ID values allowed by this rule.
21
+
SubscriptionReferences?: Aspire.Hosting/List<Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression> # Gets the subscription resource ID `ReferenceExpression` values allowed by this rule.
22
22
Subscriptions?: Aspire.Hosting/List<string> # Gets the list of subscription IDs allowed by this rule.
23
23
Aspire.Hosting.Azure.Network/Aspire.Hosting.Azure.AzureSecurityRule # Represents a security rule configuration for an Azure Network Security Group.
24
24
Access: enum:Azure.Provisioning.Network.SecurityRuleAccess # Gets or sets whether network traffic is allowed or denied.
25
25
Description: string # Gets or sets an optional description for the security rule.
26
26
DestinationAddressPrefix: string # Gets or sets the destination address prefix. Defaults to "*" (any).
27
-
DestinationAddressPrefixReference: Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression # Gets or sets a whose value is resolved at deploy time and used as the destination address prefix for the rule. Takes precedence over .
27
+
DestinationAddressPrefixReference: Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression # Gets or sets a `ReferenceExpression` whose value is resolved at deploy time and used as the destination address prefix for the rule. Takes precedence over `DestinationAddressPrefix`.
28
28
DestinationPortRange: string # Gets or sets the destination port range. Use "*" for any, or a range like "80-443".
29
29
Direction: enum:Azure.Provisioning.Network.SecurityRuleDirection # Gets or sets the direction of the rule.
30
30
Name: string # Gets or sets the name of the security rule. This name must be unique within the Network Security Group.
31
31
Priority: number # Gets or sets the priority of the rule. Valid values are between 100 and 4096. Lower numbers have higher priority.
32
32
Protocol: enum:Azure.Provisioning.Network.SecurityRuleProtocol # Gets or sets the network protocol this rule applies to.
33
33
SourceAddressPrefix: string # Gets or sets the source address prefix. Defaults to "*" (any).
34
-
SourceAddressPrefixReference: Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression # Gets or sets a whose value is resolved at deploy time and used as the source address prefix for the rule. Takes precedence over .
34
+
SourceAddressPrefixReference: Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression # Gets or sets a `ReferenceExpression` whose value is resolved at deploy time and used as the source address prefix for the rule. Takes precedence over `SourceAddressPrefix`.
35
35
SourcePortRange: string # Gets or sets the source port range. Defaults to "*" (any).
Aspire.Hosting.Azure.ServiceBus/Aspire.Hosting.Azure.AzureServiceBusRule # Represents a Service Bus Rule. Initializes a new instance of the class.
23
+
Aspire.Hosting.Azure.ServiceBus/Aspire.Hosting.Azure.AzureServiceBusRule # Represents a Service Bus Rule. Initializes a new instance of the `AzureServiceBusRule` class.
24
24
CorrelationFilter: Aspire.Hosting.Azure.ServiceBus/Aspire.Hosting.Azure.AzureServiceBusCorrelationFilter # Properties of correlation filter.
25
25
FilterType: enum:Aspire.Hosting.Azure.AzureServiceBusFilterType # Filter type that is evaluated against a BrokeredMessage.
CertificateDirectoriesPath: Aspire.Hosting/Aspire.Hosting.ApplicationModel.ReferenceExpression # The path(s) to the certificate directories in the resource context (e.g., container filesystem).
96
97
IsContainer: boolean # Is this request being generated for a container resource (i.e. does it require Linux style paths?).
97
98
RootCertificatesPath: string # The root path certificates will be written to in the resource context (e.g., container filesystem).
98
-
Aspire.Hosting/Aspire.Hosting.ApplicationModel.CommandOptions # Optional configuration for resource commands added with .
99
+
Aspire.Hosting/Aspire.Hosting.ApplicationModel.CommandOptions # Optional configuration for resource commands added with `WithCommand``1`.
99
100
Arguments: Aspire.Hosting/Aspire.Hosting.InteractionInput[] # Gets or sets the invocation arguments accepted by the command.
100
101
ConfirmationMessage: string # When a confirmation message is specified, the UI will prompt with an OK/Cancel dialog and the confirmation message before starting the command.
101
102
Description: string # Optional description of the command, to be shown in the UI. Could be used as a tooltip. May be localized.
102
103
IconName: string # The icon name for the command. The name should be a valid FluentUI icon name from .
103
104
IconVariant?: enum:Aspire.Hosting.ApplicationModel.IconVariant # The icon variant.
104
105
IsHighlighted: boolean # A flag indicating whether the command is highlighted in the UI.
105
106
Parameter: any # Obsolete optional parameter that configures the command in some way. Clients must return any value provided by the server when invoking the command.
106
-
UpdateState: callback # A callback that is used to update the command state. The callback is executed when the command's resource snapshot is updated.If a callback isn't specified, the command is always enabled.
107
+
UpdateState: callback # A callback that is used to update the command state. The callback is executed when the command's resource snapshot is updated.If a callback isn't specified, the command is always enabled.
107
108
ValidateArguments: callback # Gets or sets the callback that validates invocation arguments before the command callback is executed.
108
109
Visibility: enum:Aspire.Hosting.ApplicationModel.ResourceCommandVisibility # Gets or sets where the command is visible to users and clients.
109
110
Aspire.Hosting/Aspire.Hosting.ApplicationModel.CommandResultData # Represents a value produced by a command.
110
-
DisplayImmediately: boolean # When , the dashboard will immediately display the value in a dialog when the command completes.
111
-
Format: enum:Aspire.Hosting.ApplicationModel.CommandResultFormat # The format of the data.
111
+
DisplayImmediately: boolean # When `true`, the dashboard will immediately display the value in a dialog when the command completes.
112
+
Format: enum:Aspire.Hosting.ApplicationModel.CommandResultFormat # The format of the `Value` data.
112
113
Value: string # The value data.
113
-
Aspire.Hosting/Aspire.Hosting.ApplicationModel.ExecuteCommandResult # The result of executing a command. Returned from .
114
+
Aspire.Hosting/Aspire.Hosting.ApplicationModel.ExecuteCommandResult # The result of executing a command. Returned from `ExecuteCommand`.
114
115
Canceled: boolean # A flag that indicates whether the command was canceled by the user.
115
116
Data: Aspire.Hosting/Aspire.Hosting.ApplicationModel.CommandResultData # An optional value produced by the command.
116
117
ErrorMessage: string # An optional error message that can be set when the command is unsuccessful.
@@ -166,9 +167,9 @@ Aspire.Hosting/Aspire.Hosting.ApplicationModel.ProcessCommandSpecExportData # AT
166
167
StandardInputContent: string # Standard input content to write to the process after it starts.
167
168
WorkingDirectory: string # The working directory for the process.
168
169
Aspire.Hosting/Aspire.Hosting.ApplicationModel.ResourceUrlAnnotation # A URL that should be displayed for a resource.
169
-
DisplayLocation: enum:Aspire.Hosting.ApplicationModel.UrlDisplayLocation # Locations where this URL should be shown on the dashboard. Defaults to .
170
+
DisplayLocation: enum:Aspire.Hosting.ApplicationModel.UrlDisplayLocation # Locations where this URL should be shown on the dashboard. Defaults to `SummaryAndDetails`.
170
171
DisplayText: string # The name of the URL. When rendered as a link this will be used as the linked text.
171
-
Endpoint: Aspire.Hosting/Aspire.Hosting.ApplicationModel.EndpointReference # The endpoint associated with this URL. Can be null if this URL is not associated with an endpoint.
172
+
Endpoint: Aspire.Hosting/Aspire.Hosting.ApplicationModel.EndpointReference # The endpoint associated with this URL. Can be `null` if this URL is not associated with an endpoint.
172
173
Url: string # The URL. When rendered as a link this will be used as the link target.
173
174
Aspire.Hosting/Aspire.Hosting.Ats.AddContainerOptions # Options for configuring a container image in polyglot apphosts.
174
175
Image: string # The container image name.
@@ -211,16 +212,16 @@ Aspire.Hosting/Aspire.Hosting.Ats.ResourceEventDto # DTO for resource events ret
211
212
State: string # The current state text.
212
213
StateStyle: string # The state style (e.g., "success", "warn", "error").
213
214
Aspire.Hosting/Aspire.Hosting.InteractionInput # Represents an input for an interaction.
214
-
AllowCustomChoice: boolean # Gets a value indicating whether a custom choice is allowed. Only used by inputs.
215
+
AllowCustomChoice: boolean # Gets a value indicating whether a custom choice is allowed. Only used by `Choice` inputs.
215
216
Description: string # Gets or sets the description for the input.
216
-
Disabled: boolean # Gets or sets a value indicating whether a custom choice is allowed. Only used by inputs.
217
-
DynamicLoading: Aspire.Hosting/Aspire.Hosting.InputLoadOptions # Gets the for the input. Dynamic loading is used to load data and update inputs after a prompt has started. It can also be used to reload data and update inputs after a dependant input has changed.
218
-
EnableDescriptionMarkdown: boolean # Gets or sets a value indicating whether the description should be rendered as Markdown. Setting this to true allows a description to contain Markdown elements such as links, text decoration and lists.
217
+
Disabled: boolean # Gets or sets a value indicating whether a custom choice is allowed. Only used by `Choice` inputs.
218
+
DynamicLoading: Aspire.Hosting/Aspire.Hosting.InputLoadOptions # Gets the `InputLoadOptions` for the input. Dynamic loading is used to load data and update inputs after a prompt has started. It can also be used to reload data and update inputs after a dependant input has changed.
219
+
EnableDescriptionMarkdown: boolean # Gets or sets a value indicating whether the description should be rendered as Markdown. Setting this to `true` allows a description to contain Markdown elements such as links, text decoration and lists.
219
220
InputType: enum:Aspire.Hosting.InputType # Gets or sets the type of the input.
220
221
Label: string # Gets or sets the label for the input. If not specified, the name will be used as the label.
221
222
MaxLength?: number # gets or sets the maximum length for text inputs.
222
223
Name: string # Gets or sets the name for the input. Used for accessing inputs by name from a keyed collection.
223
-
Options: System.Private.CoreLib/System.Collections.Generic.KeyValuePair`2[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] # Gets or sets the options for the input. Only used by inputs.
224
+
Options: System.Private.CoreLib/System.Collections.Generic.KeyValuePair`2[[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] # Gets or sets the options for the input. Only used by `Choice` inputs.
224
225
Placeholder: string # Gets the placeholder text for the input.
225
226
Required: boolean # Gets or sets a value indicating whether the input is required.
226
227
Value: string # Gets or sets the value of the input.
0 commit comments