Skip to content

Commit

Permalink
Update backup templates
Browse files Browse the repository at this point in the history
  • Loading branch information
nturinski committed Sep 8, 2023
1 parent 1878157 commit 3e46c10
Show file tree
Hide file tree
Showing 41 changed files with 2,756 additions and 302 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@
},
"en": {
"eventHubOut_connection_help": "The name of the app setting containing your Event Hub connection string. The connection string must have Send permissions.",
"cosmosDBIn_leaseCollectionName_help": "The name of the collection in which the lease is stored",
"eventHubOut_connection_label": "Event Hub connection",
"eventHubOut_displayName": "Azure Event Hubs",
"eventHubOut_name_help": "The name used to identify this binding in your code",
Expand Down Expand Up @@ -1004,13 +1005,16 @@
"CosmosDBTriggerCSharp_description": "A C# function that will be run whenever documents change in a document collection.",
"CosmosDBTriggerJavascript_description": "A JavaScript function that will be run whenever documents change in a document collection.",
"cosmosDBIn_collectionName_help": "Name of the collection to be monitored.",
"cosmosDBIn_containerName_help": "Name of the container to be monitored.",
"cosmosDBIn_collectionName_label": "Collection name",
"cosmosDBIn_containerName_label": "Container name",
"cosmosDBIn_connection_help": "The name of the App Setting containing the connection string to the service that contains the collection to be monitored.",
"cosmosDBIn_connection_label": "Cosmos DB account connection",
"cosmosDBIn_databaseName_help": "Name of the Cosmos DB database that includes the collection to be monitored.",
"cosmosDBIn_databaseName_help": "Name of the Cosmos DB database that includes the container to be monitored.",
"cosmosDBIn_databaseName_label": "Database name",
"cosmosDBIn_leaseCollectionName_help": "Name of the collection to store the leases.",
"cosmosDBIn_leaseContainerName_help": "Name of the container to store the leases.",
"cosmosDBIn_leaseCollectionName_label": "Collection name for leases",
"cosmosDBIn_leaseContainerName_label": "Container name for leases",
"cosmosDBIn_leaseDatabaseName_help": "Name of the database that includes the collection to store the leases.",
"cosmosDBIn_leaseDatabaseName_label": "Database name for leases",
"cosmosDBIn_name_help": "The name used to identify this binding in your code",
Expand All @@ -1019,7 +1023,9 @@
"IoTHubServiceBusTopicTriggerCSharp_description": "A C# function that will be run whenever a message is added to the specified Service Bus topic",
"temp_category_IoTHub": "IoT Hub",
"cosmosDBIn_createIfNotExists_help": "Checks for existence and automatically creates the leases collection.",
"cosmosDBIn_createContainerIfNotExists_help": "Checks for existence and automatically creates the leases container.",
"cosmosDBIn_createIfNotExists_label": "Create lease collection if it does not exist",
"cosmosDBIn_createContainerIfNotExists_label": "Create lease container if it does not exist",
"EventGridTriggerJavascript_description": "A JavaScript function that will be run whenever an event grid receives a new event",
"Identity_help": "The identity that will be used to perform the action.",
"Identity_label": "Identity",
Expand Down Expand Up @@ -1063,6 +1069,8 @@
"DurableFunctionsHttpStart_description": "A function that will trigger whenever it receives an HTTP request to execute an orchestrator function.",
"temp_category_durableFunctions": "Durable Functions",
"BlobTrigger_name": "Blob trigger",
"blobTrigger_connection_label": "Storage account connection",
"blobTrigger_connection_help": "The name of the app setting containing your storage account connection string",
"EventHubTrigger_name": "Event Hub trigger",
"HttpTrigger_name": "HTTP trigger",
"OutlookMessageWebhookCreator_name": "Outlook message webhook subscription creator",
Expand Down Expand Up @@ -1131,6 +1139,45 @@
"kafka_consumergroup_help": "Consumer Group",
"kafka_consumergroup_label": "Consumer Group",
"SqlInputBinding_description": "A function that will be run on an HTTP trigger and returns the results of a provided SQL query.",
"SqlOuputBinding_description": "A function that will be run on an HTTP trigger and takes a list of rows and upserts them into the user table (i.e. If a row doesn't already exist, it is added. If it does, it is updated)."
"SqlOuputBinding_description": "A function that will be run on an HTTP trigger and takes a list of rows and upserts them into the user table (i.e. If a row doesn't already exist, it is added. If it does, it is updated).",
"authenticationEvents_description": "Triggers for Azure AD Authentication event custom extensions. Lets you focus on your business logic.",
"authenticationEvents_trigger_displayName": "Authentication Events Trigger",
"authenticationEvent_trigger_name_label": "Name",
"authenticationEvent_trigger_name_help": "Triggers for Azure AD Authentication event custom extensions. Lets you focus on your business logic. For more information please see /~https://github.com/Azure/microsoft-azure-webJobs-extensions-authentication-events",
"authenticationEvent_trigger_IssuanceStartVer_label": "OnTokenIssuanceStart Version",
"authenticationEvent_trigger_IssuanceStartVer_help": "API Schema Version for OnTokenIssuanceStart Event",
"sqlIn_displayName": "Azure SQL Input Binding",
"sqlIn_name_label": "Name",
"sqlIn_name_help": "The name used to identify this binding in your code.",
"sqlIn_commandText_label": "SQL Command Text",
"sqlIn_commandText_help": "The Transact-SQL query command or name of the stored procedure executed by the binding.",
"sqlIn_commandType_label": "Text or StoredProcedure",
"sqlIn_commandType_help": "The command type used to identify what type of value commandText is, either Text for a T-SQL query or StoredProcedure for a stored procedure.",
"sqlIn_parameters_label": "Parameters",
"sqlIn_parameters_help": "Parameter values passed to the command during execution as a single string. Must follow the format `@param1=param1,@param2=param2`.",
"sql_connection_label": "SQL Connection string setting",
"sql_connection_help": "The name of the app setting containing your Azure SQL binding connection string.",
"sqlOut_displayName": "Azure SQL Output Binding",
"sqlOut_name_label": "Name",
"sqlOut_name_help": "The name of the variable that represents the entity in function code.",
"sqlOut_commandText_label": "Table Name",
"sqlOut_commandText_help": "The name of the table being upserted to by the binding.",
"sqlTrigger_displayName": "Azure SQL Trigger Binding",
"sqlTrigger_name_label": "Name",
"sqlTrigger_name_help": "The name of the parameter that the trigger binds to.",
"sqlTrigger_tableName_label": "Table Name",
"sqlTrigger_tableName_help": "The name of the table being monitored by the trigger.",
"app_filename_label": "Provide a filename for your function",
"app_filename_help": "This is the file where you want to save your function code",
"trigger_functionName_help": "Name of the function you want to create",
"trigger_functionName_label": "Provide a function name",
"app_selected_filename_label": "File Name",
"app_selected_filename_help": "This is the file to which you want to add your function",
"blueprint_filename_label": "Blueprint function file Name",
"blueprint_filename_help": "This is the name of the file where you want to save your blueprint code",
"blueprint_selected_filename_help": "This is the name of the file where you want to add a function to the existing blueprint",
"blueprint_selected_filename_label": "Select a file to save for your blueprint function",
"blueprint_fileName_errorText": "Invalid fileName",
"app_filename_errorText": "Invalid fileName"
}
}
Loading

0 comments on commit 3e46c10

Please sign in to comment.