diff --git a/sdk/resourcemanager/datafactory/armdatafactory/CHANGELOG.md b/sdk/resourcemanager/datafactory/armdatafactory/CHANGELOG.md index a19ee548c516..3165f19e5288 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/CHANGELOG.md +++ b/sdk/resourcemanager/datafactory/armdatafactory/CHANGELOG.md @@ -1,5 +1,34 @@ # Release History +## 8.0.0 (2024-06-05) +### Breaking Changes + +- Enum `ScriptType` has been removed +- Field `Operator` of struct `ExpressionV2` has been removed + +### Features Added + +- Type of `ScriptActivityScriptBlock.Type` has been changed from `*ScriptType` to `any` +- New value `ExpressionV2TypeNAry` added to enum type `ExpressionV2Type` +- New enum type `AmazonRdsForSQLAuthenticationType` with values `AmazonRdsForSQLAuthenticationTypeSQL`, `AmazonRdsForSQLAuthenticationTypeWindows` +- New enum type `AzureSQLDWAuthenticationType` with values `AzureSQLDWAuthenticationTypeSQL`, `AzureSQLDWAuthenticationTypeServicePrincipal`, `AzureSQLDWAuthenticationTypeSystemAssignedManagedIdentity`, `AzureSQLDWAuthenticationTypeUserAssignedManagedIdentity` +- New enum type `AzureSQLDatabaseAuthenticationType` with values `AzureSQLDatabaseAuthenticationTypeSQL`, `AzureSQLDatabaseAuthenticationTypeServicePrincipal`, `AzureSQLDatabaseAuthenticationTypeSystemAssignedManagedIdentity`, `AzureSQLDatabaseAuthenticationTypeUserAssignedManagedIdentity` +- New enum type `AzureSQLMIAuthenticationType` with values `AzureSQLMIAuthenticationTypeSQL`, `AzureSQLMIAuthenticationTypeServicePrincipal`, `AzureSQLMIAuthenticationTypeSystemAssignedManagedIdentity`, `AzureSQLMIAuthenticationTypeUserAssignedManagedIdentity` +- New enum type `SQLServerAuthenticationType` with values `SQLServerAuthenticationTypeSQL`, `SQLServerAuthenticationTypeWindows` +- New struct `ManagedIdentityTypeProperties` +- New field `ApplicationIntent`, `AuthenticationType`, `CommandTimeout`, `ConnectRetryCount`, `ConnectRetryInterval`, `ConnectTimeout`, `Database`, `Encrypt`, `FailoverPartner`, `HostNameInCertificate`, `IntegratedSecurity`, `LoadBalanceTimeout`, `MaxPoolSize`, `MinPoolSize`, `MultiSubnetFailover`, `MultipleActiveResultSets`, `PacketSize`, `Pooling`, `Server`, `TrustServerCertificate` in struct `AmazonRdsForSQLServerLinkedServiceTypeProperties` +- New field `ApplicationIntent`, `AuthenticationType`, `CommandTimeout`, `ConnectRetryCount`, `ConnectRetryInterval`, `ConnectTimeout`, `Database`, `Encrypt`, `FailoverPartner`, `HostNameInCertificate`, `IntegratedSecurity`, `LoadBalanceTimeout`, `MaxPoolSize`, `MinPoolSize`, `MultiSubnetFailover`, `MultipleActiveResultSets`, `PacketSize`, `Pooling`, `Server`, `ServicePrincipalCredential`, `ServicePrincipalCredentialType`, `TrustServerCertificate`, `UserName` in struct `AzureSQLDWLinkedServiceTypeProperties` +- New field `ApplicationIntent`, `AuthenticationType`, `CommandTimeout`, `ConnectRetryCount`, `ConnectRetryInterval`, `ConnectTimeout`, `Database`, `Encrypt`, `FailoverPartner`, `HostNameInCertificate`, `IntegratedSecurity`, `LoadBalanceTimeout`, `MaxPoolSize`, `MinPoolSize`, `MultiSubnetFailover`, `MultipleActiveResultSets`, `PacketSize`, `Pooling`, `Server`, `ServicePrincipalCredential`, `ServicePrincipalCredentialType`, `TrustServerCertificate`, `UserName` in struct `AzureSQLDatabaseLinkedServiceTypeProperties` +- New field `ApplicationIntent`, `AuthenticationType`, `CommandTimeout`, `ConnectRetryCount`, `ConnectRetryInterval`, `ConnectTimeout`, `Database`, `Encrypt`, `FailoverPartner`, `HostNameInCertificate`, `IntegratedSecurity`, `LoadBalanceTimeout`, `MaxPoolSize`, `MinPoolSize`, `MultiSubnetFailover`, `MultipleActiveResultSets`, `PacketSize`, `Pooling`, `Server`, `ServicePrincipalCredential`, `ServicePrincipalCredentialType`, `TrustServerCertificate`, `UserName` in struct `AzureSQLMILinkedServiceTypeProperties` +- New field `Credential` in struct `DynamicsCrmLinkedServiceTypeProperties` +- New field `Operators` in struct `ExpressionV2` +- New field `Schema` in struct `LakeHouseTableDatasetTypeProperties` +- New field `TypeProperties` in struct `ManagedIdentityCredential` +- New field `ApplicationIntent`, `AuthenticationType`, `CommandTimeout`, `ConnectRetryCount`, `ConnectRetryInterval`, `ConnectTimeout`, `Database`, `Encrypt`, `FailoverPartner`, `HostNameInCertificate`, `IntegratedSecurity`, `LoadBalanceTimeout`, `MaxPoolSize`, `MinPoolSize`, `MultiSubnetFailover`, `MultipleActiveResultSets`, `PacketSize`, `Pooling`, `Server`, `TrustServerCertificate` in struct `SQLServerLinkedServiceTypeProperties` +- New field `Query` in struct `SalesforceServiceCloudV2Source` +- New field `Query` in struct `SalesforceV2Source` + + ## 7.0.0 (2024-04-04) ### Breaking Changes diff --git a/sdk/resourcemanager/datafactory/armdatafactory/README.md b/sdk/resourcemanager/datafactory/armdatafactory/README.md index 46dac46c2a15..0a84394293f2 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/README.md +++ b/sdk/resourcemanager/datafactory/armdatafactory/README.md @@ -1,6 +1,6 @@ # Azure Data Factory Module for Go -[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8) The `armdatafactory` module provides operations for working with Azure Data Factory. @@ -20,7 +20,7 @@ This project uses [Go modules](https://github.com/golang/go/wiki/Modules) for ve Install the Azure Data Factory module: ```sh -go get github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7 +go get github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8 ``` ## Authorization diff --git a/sdk/resourcemanager/datafactory/armdatafactory/activityruns_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/activityruns_client_example_test.go index c787ba9dd211..1db28e560fe8 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/activityruns_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/activityruns_client_example_test.go @@ -17,10 +17,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ActivityRuns_QueryByPipelineRun.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ActivityRuns_QueryByPipelineRun.json func ExampleActivityRunsClient_QueryByPipelineRun() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/autorest.md b/sdk/resourcemanager/datafactory/armdatafactory/autorest.md index e697eee5d772..2f6bc78b150c 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/autorest.md +++ b/sdk/resourcemanager/datafactory/armdatafactory/autorest.md @@ -5,9 +5,9 @@ ``` yaml azure-arm: true require: -- https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/readme.md -- https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/readme.go.md +- https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/readme.md +- https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/readme.go.md license-header: MICROSOFT_MIT_NO_VERSION -module-version: 7.0.0 +module-version: 8.0.0 tag: package-2018-06 ``` \ No newline at end of file diff --git a/sdk/resourcemanager/datafactory/armdatafactory/changedatacapture_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/changedatacapture_client_example_test.go index 5cfd59852e7b..47475a5ad117 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/changedatacapture_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/changedatacapture_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_ListByFactory.json func ExampleChangeDataCaptureClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -57,7 +57,7 @@ func ExampleChangeDataCaptureClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Create.json func ExampleChangeDataCaptureClient_CreateOrUpdate_changeDataCaptureCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -92,7 +92,7 @@ func ExampleChangeDataCaptureClient_CreateOrUpdate_changeDataCaptureCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Update.json func ExampleChangeDataCaptureClient_CreateOrUpdate_changeDataCaptureUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -129,7 +129,7 @@ func ExampleChangeDataCaptureClient_CreateOrUpdate_changeDataCaptureUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Get.json func ExampleChangeDataCaptureClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -159,7 +159,7 @@ func ExampleChangeDataCaptureClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Delete.json func ExampleChangeDataCaptureClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -176,7 +176,7 @@ func ExampleChangeDataCaptureClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Start.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Start.json func ExampleChangeDataCaptureClient_Start() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -193,7 +193,7 @@ func ExampleChangeDataCaptureClient_Start() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Stop.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Stop.json func ExampleChangeDataCaptureClient_Stop() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -210,7 +210,7 @@ func ExampleChangeDataCaptureClient_Stop() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Status.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ChangeDataCapture_Status.json func ExampleChangeDataCaptureClient_Status() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/constants.go b/sdk/resourcemanager/datafactory/armdatafactory/constants.go index b6e6b96a497d..76bc85c3a1e9 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/constants.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/constants.go @@ -10,7 +10,7 @@ package armdatafactory const ( moduleName = "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory" - moduleVersion = "v7.0.0" + moduleVersion = "v8.0.0" ) // ActivityOnInactiveMarkAs - Status result of the activity when the state is set to Inactive. This is an optional property @@ -48,6 +48,22 @@ func PossibleActivityStateValues() []ActivityState { } } +// AmazonRdsForSQLAuthenticationType - The type used for authentication. Type: string. +type AmazonRdsForSQLAuthenticationType string + +const ( + AmazonRdsForSQLAuthenticationTypeSQL AmazonRdsForSQLAuthenticationType = "SQL" + AmazonRdsForSQLAuthenticationTypeWindows AmazonRdsForSQLAuthenticationType = "Windows" +) + +// PossibleAmazonRdsForSQLAuthenticationTypeValues returns the possible values for the AmazonRdsForSQLAuthenticationType const type. +func PossibleAmazonRdsForSQLAuthenticationTypeValues() []AmazonRdsForSQLAuthenticationType { + return []AmazonRdsForSQLAuthenticationType{ + AmazonRdsForSQLAuthenticationTypeSQL, + AmazonRdsForSQLAuthenticationTypeWindows, + } +} + // AzureFunctionActivityMethod - The list of HTTP methods supported by a AzureFunctionActivity. type AzureFunctionActivityMethod string @@ -74,6 +90,66 @@ func PossibleAzureFunctionActivityMethodValues() []AzureFunctionActivityMethod { } } +// AzureSQLDWAuthenticationType - The type used for authentication. Type: string. +type AzureSQLDWAuthenticationType string + +const ( + AzureSQLDWAuthenticationTypeSQL AzureSQLDWAuthenticationType = "SQL" + AzureSQLDWAuthenticationTypeServicePrincipal AzureSQLDWAuthenticationType = "ServicePrincipal" + AzureSQLDWAuthenticationTypeSystemAssignedManagedIdentity AzureSQLDWAuthenticationType = "SystemAssignedManagedIdentity" + AzureSQLDWAuthenticationTypeUserAssignedManagedIdentity AzureSQLDWAuthenticationType = "UserAssignedManagedIdentity" +) + +// PossibleAzureSQLDWAuthenticationTypeValues returns the possible values for the AzureSQLDWAuthenticationType const type. +func PossibleAzureSQLDWAuthenticationTypeValues() []AzureSQLDWAuthenticationType { + return []AzureSQLDWAuthenticationType{ + AzureSQLDWAuthenticationTypeSQL, + AzureSQLDWAuthenticationTypeServicePrincipal, + AzureSQLDWAuthenticationTypeSystemAssignedManagedIdentity, + AzureSQLDWAuthenticationTypeUserAssignedManagedIdentity, + } +} + +// AzureSQLDatabaseAuthenticationType - The type used for authentication. Type: string. +type AzureSQLDatabaseAuthenticationType string + +const ( + AzureSQLDatabaseAuthenticationTypeSQL AzureSQLDatabaseAuthenticationType = "SQL" + AzureSQLDatabaseAuthenticationTypeServicePrincipal AzureSQLDatabaseAuthenticationType = "ServicePrincipal" + AzureSQLDatabaseAuthenticationTypeSystemAssignedManagedIdentity AzureSQLDatabaseAuthenticationType = "SystemAssignedManagedIdentity" + AzureSQLDatabaseAuthenticationTypeUserAssignedManagedIdentity AzureSQLDatabaseAuthenticationType = "UserAssignedManagedIdentity" +) + +// PossibleAzureSQLDatabaseAuthenticationTypeValues returns the possible values for the AzureSQLDatabaseAuthenticationType const type. +func PossibleAzureSQLDatabaseAuthenticationTypeValues() []AzureSQLDatabaseAuthenticationType { + return []AzureSQLDatabaseAuthenticationType{ + AzureSQLDatabaseAuthenticationTypeSQL, + AzureSQLDatabaseAuthenticationTypeServicePrincipal, + AzureSQLDatabaseAuthenticationTypeSystemAssignedManagedIdentity, + AzureSQLDatabaseAuthenticationTypeUserAssignedManagedIdentity, + } +} + +// AzureSQLMIAuthenticationType - The type used for authentication. Type: string. +type AzureSQLMIAuthenticationType string + +const ( + AzureSQLMIAuthenticationTypeSQL AzureSQLMIAuthenticationType = "SQL" + AzureSQLMIAuthenticationTypeServicePrincipal AzureSQLMIAuthenticationType = "ServicePrincipal" + AzureSQLMIAuthenticationTypeSystemAssignedManagedIdentity AzureSQLMIAuthenticationType = "SystemAssignedManagedIdentity" + AzureSQLMIAuthenticationTypeUserAssignedManagedIdentity AzureSQLMIAuthenticationType = "UserAssignedManagedIdentity" +) + +// PossibleAzureSQLMIAuthenticationTypeValues returns the possible values for the AzureSQLMIAuthenticationType const type. +func PossibleAzureSQLMIAuthenticationTypeValues() []AzureSQLMIAuthenticationType { + return []AzureSQLMIAuthenticationType{ + AzureSQLMIAuthenticationTypeSQL, + AzureSQLMIAuthenticationTypeServicePrincipal, + AzureSQLMIAuthenticationTypeSystemAssignedManagedIdentity, + AzureSQLMIAuthenticationTypeUserAssignedManagedIdentity, + } +} + // AzureSearchIndexWriteBehaviorType - Specify the write behavior when upserting documents into Azure Search Index. type AzureSearchIndexWriteBehaviorType string @@ -443,6 +519,7 @@ const ( ExpressionV2TypeBinary ExpressionV2Type = "Binary" ExpressionV2TypeConstant ExpressionV2Type = "Constant" ExpressionV2TypeField ExpressionV2Type = "Field" + ExpressionV2TypeNAry ExpressionV2Type = "NAry" ExpressionV2TypeUnary ExpressionV2Type = "Unary" ) @@ -452,6 +529,7 @@ func PossibleExpressionV2TypeValues() []ExpressionV2Type { ExpressionV2TypeBinary, ExpressionV2TypeConstant, ExpressionV2TypeField, + ExpressionV2TypeNAry, ExpressionV2TypeUnary, } } @@ -1344,6 +1422,22 @@ func PossibleSQLAlwaysEncryptedAkvAuthTypeValues() []SQLAlwaysEncryptedAkvAuthTy } } +// SQLServerAuthenticationType - The type used for authentication. Type: string. +type SQLServerAuthenticationType string + +const ( + SQLServerAuthenticationTypeSQL SQLServerAuthenticationType = "SQL" + SQLServerAuthenticationTypeWindows SQLServerAuthenticationType = "Windows" +) + +// PossibleSQLServerAuthenticationTypeValues returns the possible values for the SQLServerAuthenticationType const type. +func PossibleSQLServerAuthenticationTypeValues() []SQLServerAuthenticationType { + return []SQLServerAuthenticationType{ + SQLServerAuthenticationTypeSQL, + SQLServerAuthenticationTypeWindows, + } +} + // SalesforceSinkWriteBehavior - The write behavior for the operation. Default is Insert. type SalesforceSinkWriteBehavior string @@ -1478,22 +1572,6 @@ func PossibleScriptActivityParameterTypeValues() []ScriptActivityParameterType { } } -// ScriptType - The type of the query. Type: string. -type ScriptType string - -const ( - ScriptTypeNonQuery ScriptType = "NonQuery" - ScriptTypeQuery ScriptType = "Query" -) - -// PossibleScriptTypeValues returns the possible values for the ScriptType const type. -func PossibleScriptTypeValues() []ScriptType { - return []ScriptType{ - ScriptTypeNonQuery, - ScriptTypeQuery, - } -} - // SelfHostedIntegrationRuntimeNodeStatus - Status of the integration runtime node. type SelfHostedIntegrationRuntimeNodeStatus string diff --git a/sdk/resourcemanager/datafactory/armdatafactory/credentialoperations_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/credentialoperations_client_example_test.go index f0d67d9807f7..602f5f71c9aa 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/credentialoperations_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/credentialoperations_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_ListByFactory.json func ExampleCredentialOperationsClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -50,10 +50,8 @@ func ExampleCredentialOperationsClient_NewListByFactoryPager() { // Properties: &armdatafactory.ManagedIdentityCredential{ // Type: to.Ptr("ManagedIdentity"), // Description: to.Ptr("Example description"), - // AdditionalProperties: map[string]any{ - // "typeProperties": map[string]any{ - // "resourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami", - // }, + // TypeProperties: &armdatafactory.ManagedIdentityTypeProperties{ + // ResourceID: to.Ptr("/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami"), // }, // }, // }}, @@ -61,7 +59,7 @@ func ExampleCredentialOperationsClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_Create.json func ExampleCredentialOperationsClient_CreateOrUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -75,10 +73,8 @@ func ExampleCredentialOperationsClient_CreateOrUpdate() { res, err := clientFactory.NewCredentialOperationsClient().CreateOrUpdate(ctx, "exampleResourceGroup", "exampleFactoryName", "exampleCredential", armdatafactory.CredentialResource{ Properties: &armdatafactory.ManagedIdentityCredential{ Type: to.Ptr("ManagedIdentity"), - AdditionalProperties: map[string]any{ - "typeProperties": map[string]any{ - "resourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami", - }, + TypeProperties: &armdatafactory.ManagedIdentityTypeProperties{ + ResourceID: to.Ptr("/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami"), }, }, }, &armdatafactory.CredentialOperationsClientCreateOrUpdateOptions{IfMatch: nil}) @@ -95,16 +91,14 @@ func ExampleCredentialOperationsClient_CreateOrUpdate() { // ID: to.Ptr("/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/credentials/exampleCredential"), // Properties: &armdatafactory.ManagedIdentityCredential{ // Type: to.Ptr("ManagedIdentity"), - // AdditionalProperties: map[string]any{ - // "typeProperties": map[string]any{ - // "resourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami", - // }, + // TypeProperties: &armdatafactory.ManagedIdentityTypeProperties{ + // ResourceID: to.Ptr("/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami"), // }, // }, // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_Get.json func ExampleCredentialOperationsClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -130,16 +124,14 @@ func ExampleCredentialOperationsClient_Get() { // Properties: &armdatafactory.ManagedIdentityCredential{ // Type: to.Ptr("ManagedIdentity"), // Description: to.Ptr("Example description"), - // AdditionalProperties: map[string]any{ - // "typeProperties": map[string]any{ - // "resourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami", - // }, + // TypeProperties: &armdatafactory.ManagedIdentityTypeProperties{ + // ResourceID: to.Ptr("/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami"), // }, // }, // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Credentials_Delete.json func ExampleCredentialOperationsClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/datafactory_live_test.go b/sdk/resourcemanager/datafactory/armdatafactory/datafactory_live_test.go index 3132fb82c5d0..cbe5a9514c58 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/datafactory_live_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/datafactory_live_test.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/internal/recording" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal/v3/testutil" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources" "github.com/stretchr/testify/suite" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/dataflowdebugsession_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/dataflowdebugsession_client_example_test.go index 07ab7d562cb7..c60723ddf9e9 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/dataflowdebugsession_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/dataflowdebugsession_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_Create.json func ExampleDataFlowDebugSessionClient_BeginCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -64,7 +64,7 @@ func ExampleDataFlowDebugSessionClient_BeginCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_QueryByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_QueryByFactory.json func ExampleDataFlowDebugSessionClient_NewQueryByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -104,7 +104,7 @@ func ExampleDataFlowDebugSessionClient_NewQueryByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_AddDataFlow.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_AddDataFlow.json func ExampleDataFlowDebugSessionClient_AddDataFlow() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -210,7 +210,7 @@ func ExampleDataFlowDebugSessionClient_AddDataFlow() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_Delete.json func ExampleDataFlowDebugSessionClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -229,7 +229,7 @@ func ExampleDataFlowDebugSessionClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_ExecuteCommand.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlowDebugSession_ExecuteCommand.json func ExampleDataFlowDebugSessionClient_BeginExecuteCommand() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/dataflows_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/dataflows_client_example_test.go index 7f3bd25e4747..9a37032f6d06 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/dataflows_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/dataflows_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Create.json func ExampleDataFlowsClient_CreateOrUpdate_dataFlowsCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -163,7 +163,7 @@ func ExampleDataFlowsClient_CreateOrUpdate_dataFlowsCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Update.json func ExampleDataFlowsClient_CreateOrUpdate_dataFlowsUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -308,7 +308,7 @@ func ExampleDataFlowsClient_CreateOrUpdate_dataFlowsUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Get.json func ExampleDataFlowsClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -371,7 +371,7 @@ func ExampleDataFlowsClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_Delete.json func ExampleDataFlowsClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -388,7 +388,7 @@ func ExampleDataFlowsClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DataFlows_ListByFactory.json func ExampleDataFlowsClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/datasets_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/datasets_client_example_test.go index 733fd55282e0..c8094932372b 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/datasets_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/datasets_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_ListByFactory.json func ExampleDatasetsClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -81,7 +81,7 @@ func ExampleDatasetsClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Create.json func ExampleDatasetsClient_CreateOrUpdate_datasetsCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -176,7 +176,7 @@ func ExampleDatasetsClient_CreateOrUpdate_datasetsCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Update.json func ExampleDatasetsClient_CreateOrUpdate_datasetsUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -261,7 +261,7 @@ func ExampleDatasetsClient_CreateOrUpdate_datasetsUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Get.json func ExampleDatasetsClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -316,7 +316,7 @@ func ExampleDatasetsClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Datasets_Delete.json func ExampleDatasetsClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/exposurecontrol_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/exposurecontrol_client_example_test.go index 6642c3990fdd..edcaff1f53d9 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/exposurecontrol_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/exposurecontrol_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValue.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValue.json func ExampleExposureControlClient_GetFeatureValue() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -45,7 +45,7 @@ func ExampleExposureControlClient_GetFeatureValue() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValueByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_GetFeatureValueByFactory.json func ExampleExposureControlClient_GetFeatureValueByFactory() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -72,7 +72,7 @@ func ExampleExposureControlClient_GetFeatureValueByFactory() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_QueryFeatureValuesByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ExposureControl_QueryFeatureValuesByFactory.json func ExampleExposureControlClient_QueryFeatureValuesByFactory() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/factories_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/factories_client_example_test.go index 2ff64a1d6498..909f7aaebd08 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/factories_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/factories_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_List.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_List.json func ExampleFactoriesClient_NewListPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -244,7 +244,7 @@ func ExampleFactoriesClient_NewListPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ConfigureFactoryRepo.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ConfigureFactoryRepo.json func ExampleFactoriesClient_ConfigureFactoryRepo() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -301,7 +301,7 @@ func ExampleFactoriesClient_ConfigureFactoryRepo() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ListByResourceGroup.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_ListByResourceGroup.json func ExampleFactoriesClient_NewListByResourceGroupPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -387,7 +387,7 @@ func ExampleFactoriesClient_NewListByResourceGroupPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_CreateOrUpdate.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_CreateOrUpdate.json func ExampleFactoriesClient_CreateOrUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -423,7 +423,7 @@ func ExampleFactoriesClient_CreateOrUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Update.json func ExampleFactoriesClient_Update() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -462,7 +462,7 @@ func ExampleFactoriesClient_Update() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Get.json func ExampleFactoriesClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -510,7 +510,7 @@ func ExampleFactoriesClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_Delete.json func ExampleFactoriesClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -527,7 +527,7 @@ func ExampleFactoriesClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetGitHubAccessToken.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetGitHubAccessToken.json func ExampleFactoriesClient_GetGitHubAccessToken() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -554,7 +554,7 @@ func ExampleFactoriesClient_GetGitHubAccessToken() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetDataPlaneAccess.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Factories_GetDataPlaneAccess.json func ExampleFactoriesClient_GetDataPlaneAccess() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/activityruns_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/activityruns_server.go index 5676ac2174eb..c2706101e59a 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/activityruns_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/activityruns_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/changedatacapture_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/changedatacapture_server.go index 810faa0675ba..9d844a52438c 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/changedatacapture_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/changedatacapture_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/credentialoperations_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/credentialoperations_server.go index d31a9b2fb435..142870658689 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/credentialoperations_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/credentialoperations_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflowdebugsession_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflowdebugsession_server.go index 40a3a9ef2fbf..f51d4f9d850a 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflowdebugsession_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflowdebugsession_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflows_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflows_server.go index 35b942f81f68..311233506227 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflows_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/dataflows_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/datasets_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/datasets_server.go index f091ffc7be73..7f2d90171862 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/datasets_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/datasets_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/exposurecontrol_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/exposurecontrol_server.go index 320441da27a1..403f5a119ceb 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/exposurecontrol_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/exposurecontrol_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/factories_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/factories_server.go index fcaf6f94be52..a4da3612a68b 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/factories_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/factories_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/globalparameters_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/globalparameters_server.go index 204b27c49ecc..bc3da2b84b1c 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/globalparameters_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/globalparameters_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimenodes_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimenodes_server.go index db87fb81248e..ffb2e2b3b14a 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimenodes_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimenodes_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimeobjectmetadata_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimeobjectmetadata_server.go index c358f8550949..32f40efa40cb 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimeobjectmetadata_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimeobjectmetadata_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "reflect" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimes_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimes_server.go index 2194b9365a42..126921aefe9a 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimes_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/integrationruntimes_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/linkedservices_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/linkedservices_server.go index 629078156f43..5ed178105661 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/linkedservices_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/linkedservices_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/managedprivateendpoints_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/managedprivateendpoints_server.go index 246c7cede6dc..3b7a55be0fd7 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/managedprivateendpoints_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/managedprivateendpoints_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/managedvirtualnetworks_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/managedvirtualnetworks_server.go index 75f161d27a80..13835f69d5b1 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/managedvirtualnetworks_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/managedvirtualnetworks_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/operations_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/operations_server.go index c5ced05372c3..a4cfcffe224d 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/operations_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/operations_server.go @@ -15,7 +15,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" ) diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelineruns_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelineruns_server.go index a4aa98ef4220..c6493d51472a 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelineruns_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelineruns_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelines_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelines_server.go index 2ff5cabc722d..9ad491469bb7 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelines_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/pipelines_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "reflect" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnection_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnection_server.go index 6e864e3b4daf..60a56d45e683 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnection_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnection_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnections_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnections_server.go index 62f4107cec8a..910171f8ddab 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnections_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/privateendpointconnections_server.go @@ -15,7 +15,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/privatelinkresources_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/privatelinkresources_server.go index 99e7cdb8127c..f49f8359f78a 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/privatelinkresources_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/privatelinkresources_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/triggerruns_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/triggerruns_server.go index 9c9f391b800e..36560c0616ae 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/triggerruns_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/triggerruns_server.go @@ -15,7 +15,7 @@ import ( azfake "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake" "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/fake/triggers_server.go b/sdk/resourcemanager/datafactory/armdatafactory/fake/triggers_server.go index c47dd04ac7f6..029262342d48 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/fake/triggers_server.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/fake/triggers_server.go @@ -16,7 +16,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/fake/server" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" "net/http" "net/url" "regexp" diff --git a/sdk/resourcemanager/datafactory/armdatafactory/globalparameters_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/globalparameters_client_example_test.go index 160baae30217..43fdfd68ec4b 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/globalparameters_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/globalparameters_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_ListByFactory.json func ExampleGlobalParametersClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -81,7 +81,7 @@ func ExampleGlobalParametersClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Get.json func ExampleGlobalParametersClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -113,7 +113,7 @@ func ExampleGlobalParametersClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Create.json func ExampleGlobalParametersClient_CreateOrUpdate_globalParametersCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -152,7 +152,7 @@ func ExampleGlobalParametersClient_CreateOrUpdate_globalParametersCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Update.json func ExampleGlobalParametersClient_CreateOrUpdate_globalParametersUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -191,7 +191,7 @@ func ExampleGlobalParametersClient_CreateOrUpdate_globalParametersUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Delete.json func ExampleGlobalParametersClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/go.mod b/sdk/resourcemanager/datafactory/armdatafactory/go.mod index a23909dccfb8..0193de2c2049 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/go.mod +++ b/sdk/resourcemanager/datafactory/armdatafactory/go.mod @@ -1,4 +1,4 @@ -module github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7 +module github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8 go 1.18 diff --git a/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimenodes_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimenodes_client_example_test.go index 55c0951c4c68..f75ba73b2d7e 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimenodes_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimenodes_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Get.json func ExampleIntegrationRuntimeNodesClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -59,7 +59,7 @@ func ExampleIntegrationRuntimeNodesClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Delete.json func ExampleIntegrationRuntimeNodesClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -76,7 +76,7 @@ func ExampleIntegrationRuntimeNodesClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_Update.json func ExampleIntegrationRuntimeNodesClient_Update() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -120,7 +120,7 @@ func ExampleIntegrationRuntimeNodesClient_Update() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_GetIpAddress.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeNodes_GetIpAddress.json func ExampleIntegrationRuntimeNodesClient_GetIPAddress() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimeobjectmetadata_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimeobjectmetadata_client_example_test.go index d4c8e6079f0f..b749fd95b7c9 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimeobjectmetadata_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimeobjectmetadata_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Refresh.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Refresh.json func ExampleIntegrationRuntimeObjectMetadataClient_BeginRefresh() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -46,7 +46,7 @@ func ExampleIntegrationRuntimeObjectMetadataClient_BeginRefresh() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimeObjectMetadata_Get.json func ExampleIntegrationRuntimeObjectMetadataClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimes_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimes_client_example_test.go index 64a04dfa9f56..4c8c77dc920b 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimes_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/integrationruntimes_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListByFactory.json func ExampleIntegrationRuntimesClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -56,7 +56,7 @@ func ExampleIntegrationRuntimesClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Create.json func ExampleIntegrationRuntimesClient_CreateOrUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -91,7 +91,7 @@ func ExampleIntegrationRuntimesClient_CreateOrUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Get.json func ExampleIntegrationRuntimesClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -121,7 +121,7 @@ func ExampleIntegrationRuntimesClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Update.json func ExampleIntegrationRuntimesClient_Update() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -154,7 +154,7 @@ func ExampleIntegrationRuntimesClient_Update() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Delete.json func ExampleIntegrationRuntimesClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -171,7 +171,7 @@ func ExampleIntegrationRuntimesClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetStatus.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetStatus.json func ExampleIntegrationRuntimesClient_GetStatus() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -240,7 +240,7 @@ func ExampleIntegrationRuntimesClient_GetStatus() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListOutboundNetworkDependenciesEndpoints.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListOutboundNetworkDependenciesEndpoints.json func ExampleIntegrationRuntimesClient_ListOutboundNetworkDependenciesEndpoints() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -328,7 +328,7 @@ func ExampleIntegrationRuntimesClient_ListOutboundNetworkDependenciesEndpoints() // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetConnectionInfo.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetConnectionInfo.json func ExampleIntegrationRuntimesClient_GetConnectionInfo() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -356,7 +356,7 @@ func ExampleIntegrationRuntimesClient_GetConnectionInfo() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RegenerateAuthKey.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RegenerateAuthKey.json func ExampleIntegrationRuntimesClient_RegenerateAuthKey() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -381,7 +381,7 @@ func ExampleIntegrationRuntimesClient_RegenerateAuthKey() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListAuthKeys.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_ListAuthKeys.json func ExampleIntegrationRuntimesClient_ListAuthKeys() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -405,7 +405,7 @@ func ExampleIntegrationRuntimesClient_ListAuthKeys() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Start.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Start.json func ExampleIntegrationRuntimesClient_BeginStart() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -444,7 +444,7 @@ func ExampleIntegrationRuntimesClient_BeginStart() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Stop.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Stop.json func ExampleIntegrationRuntimesClient_BeginStop() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -465,7 +465,7 @@ func ExampleIntegrationRuntimesClient_BeginStop() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_SyncCredentials.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_SyncCredentials.json func ExampleIntegrationRuntimesClient_SyncCredentials() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -482,7 +482,7 @@ func ExampleIntegrationRuntimesClient_SyncCredentials() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetMonitoringData.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_GetMonitoringData.json func ExampleIntegrationRuntimesClient_GetMonitoringData() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -515,7 +515,7 @@ func ExampleIntegrationRuntimesClient_GetMonitoringData() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Upgrade.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_Upgrade.json func ExampleIntegrationRuntimesClient_Upgrade() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -532,7 +532,7 @@ func ExampleIntegrationRuntimesClient_Upgrade() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RemoveLinks.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_RemoveLinks.json func ExampleIntegrationRuntimesClient_RemoveLinks() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -551,7 +551,7 @@ func ExampleIntegrationRuntimesClient_RemoveLinks() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_CreateLinkedIntegrationRuntime.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/IntegrationRuntimes_CreateLinkedIntegrationRuntime.json func ExampleIntegrationRuntimesClient_CreateLinkedIntegrationRuntime() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/linkedservices_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/linkedservices_client_example_test.go index 4fe2fc12c92a..1a5f17ff3626 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/linkedservices_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/linkedservices_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_ListByFactory.json func ExampleLinkedServicesClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -63,7 +63,7 @@ func ExampleLinkedServicesClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Create.json func ExampleLinkedServicesClient_CreateOrUpdate_linkedServicesCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -109,7 +109,7 @@ func ExampleLinkedServicesClient_CreateOrUpdate_linkedServicesCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Update.json func ExampleLinkedServicesClient_CreateOrUpdate_linkedServicesUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -157,7 +157,7 @@ func ExampleLinkedServicesClient_CreateOrUpdate_linkedServicesUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Get.json func ExampleLinkedServicesClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -194,7 +194,7 @@ func ExampleLinkedServicesClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/LinkedServices_Delete.json func ExampleLinkedServicesClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/managedprivateendpoints_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/managedprivateendpoints_client_example_test.go index d5187c130c44..d7a38a5ef588 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/managedprivateendpoints_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/managedprivateendpoints_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_ListByFactory.json func ExampleManagedPrivateEndpointsClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -64,7 +64,7 @@ func ExampleManagedPrivateEndpointsClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_Create.json func ExampleManagedPrivateEndpointsClient_CreateOrUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -108,7 +108,7 @@ func ExampleManagedPrivateEndpointsClient_CreateOrUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_Get.json func ExampleManagedPrivateEndpointsClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -146,7 +146,7 @@ func ExampleManagedPrivateEndpointsClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedPrivateEndpoints_Delete.json func ExampleManagedPrivateEndpointsClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/managedvirtualnetworks_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/managedvirtualnetworks_client_example_test.go index 1ce768869d8e..e74a2a236929 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/managedvirtualnetworks_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/managedvirtualnetworks_client_example_test.go @@ -14,10 +14,10 @@ import ( "log" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedVirtualNetworks_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedVirtualNetworks_ListByFactory.json func ExampleManagedVirtualNetworksClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -55,7 +55,7 @@ func ExampleManagedVirtualNetworksClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedVirtualNetworks_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedVirtualNetworks_Create.json func ExampleManagedVirtualNetworksClient_CreateOrUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -87,7 +87,7 @@ func ExampleManagedVirtualNetworksClient_CreateOrUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedVirtualNetworks_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ManagedVirtualNetworks_Get.json func ExampleManagedVirtualNetworksClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/models.go b/sdk/resourcemanager/datafactory/armdatafactory/models.go index 48c9d158e5f2..10c4e4800616 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/models.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/models.go @@ -538,19 +538,105 @@ func (a *AmazonRdsForSQLServerLinkedService) GetLinkedService() *LinkedService { // AmazonRdsForSQLServerLinkedServiceTypeProperties - Amazon Rds for SQL Server linked service properties. type AmazonRdsForSQLServerLinkedServiceTypeProperties struct { - // REQUIRED; The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. - ConnectionString any - // Sql always encrypted properties. AlwaysEncryptedSettings *SQLAlwaysEncryptedProperties + // The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and + // ReadWrite. Type: string (or Expression with resultType string). + ApplicationIntent any + + // The type used for authentication. Type: string. + AuthenticationType *AmazonRdsForSQLAuthenticationType + + // The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by + // recommended version. Type: integer (or Expression with resultType integer). + CommandTimeout any + + // The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended + // version. This must be an integer between 0 and 255. Type: integer (or Expression + // with resultType integer). + ConnectRetryCount any + + // The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection + // failure, used by recommended version. This must be an integer between 1 and 60. + // Type: integer (or Expression with resultType integer). + ConnectRetryInterval any + + // The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an + // error, used by recommended version. Type: integer (or Expression with resultType + // integer). + ConnectTimeout any + + // The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + ConnectionString any + + // The name of the database, used by recommended version. Type: string (or Expression with resultType string). + Database any + + // Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. + // Possible values are true/yes/mandatory, false/no/optional and strict. Type: + // string (or Expression with resultType string). + Encrypt any + // The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. // Type: string. EncryptedCredential *string + // The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: + // string (or Expression with resultType string). + FailoverPartner any + + // The host name to use when validating the server certificate for the connection. When not specified, the server name from + // the Data Source is used for certificate validation, used by recommended + // version. Type: string (or Expression with resultType string). + HostNameInCertificate any + + // Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account + // credentials are used for authentication (when true), used by recommended + // version. Type: Boolean (or Expression with resultType boolean). + IntegratedSecurity any + + // The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended + // version. Type: integer (or Expression with resultType integer). + LoadBalanceTimeout any + + // The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MaxPoolSize any + + // The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MinPoolSize any + + // If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true + // provides faster detection of and connection to the (currently) active + // server, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultiSubnetFailover any + + // When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel + // all result sets from one batch before it can execute any other batch on + // that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultipleActiveResultSets any + + // The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: + // integer (or Expression with resultType integer). + PacketSize any + // The on-premises Windows authentication password. Password SecretBaseClassification + // Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + Pooling any + + // The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string + // (or Expression with resultType string). + Server any + + // Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + TrustServerCertificate any + // The on-premises Windows authentication user name. Type: string (or Expression with resultType string). UserName any } @@ -4890,25 +4976,117 @@ func (a *AzureSQLDWLinkedService) GetLinkedService() *LinkedService { // AzureSQLDWLinkedServiceTypeProperties - Azure SQL Data Warehouse linked service properties. type AzureSQLDWLinkedServiceTypeProperties struct { - // REQUIRED; The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString - // or AzureKeyVaultSecretReference. - ConnectionString any + // The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and + // ReadWrite. Type: string (or Expression with resultType string). + ApplicationIntent any + + // The type used for authentication. Type: string. + AuthenticationType *AzureSQLDWAuthenticationType // Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, // AzureGermany. Default value is the data factory regions’ cloud type. Type: // string (or Expression with resultType string). AzureCloudType any + // The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by + // recommended version. Type: integer (or Expression with resultType integer). + CommandTimeout any + + // The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended + // version. This must be an integer between 0 and 255. Type: integer (or Expression + // with resultType integer). + ConnectRetryCount any + + // The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection + // failure, used by recommended version. This must be an integer between 1 and 60. + // Type: integer (or Expression with resultType integer). + ConnectRetryInterval any + + // The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an + // error, used by recommended version. Type: integer (or Expression with resultType + // integer). + ConnectTimeout any + + // The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. + ConnectionString any + // The credential reference containing authentication information. Credential *CredentialReference + // The name of the database, used by recommended version. Type: string (or Expression with resultType string). + Database any + + // Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. + // Possible values are true/yes/mandatory, false/no/optional and strict. Type: + // string (or Expression with resultType string). + Encrypt any + // The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. // Type: string. EncryptedCredential *string + // The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: + // string (or Expression with resultType string). + FailoverPartner any + + // The host name to use when validating the server certificate for the connection. When not specified, the server name from + // the Data Source is used for certificate validation, used by recommended + // version. Type: string (or Expression with resultType string). + HostNameInCertificate any + + // Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account + // credentials are used for authentication (when true), used by recommended + // version. Type: Boolean (or Expression with resultType boolean). + IntegratedSecurity any + + // The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended + // version. Type: integer (or Expression with resultType integer). + LoadBalanceTimeout any + + // The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MaxPoolSize any + + // The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MinPoolSize any + + // If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true + // provides faster detection of and connection to the (currently) active + // server, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultiSubnetFailover any + + // When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel + // all result sets from one batch before it can execute any other batch on + // that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultipleActiveResultSets any + + // The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: + // integer (or Expression with resultType integer). + PacketSize any + // The Azure key vault secret reference of password in connection string. Password *AzureKeyVaultSecretReference + // Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + Pooling any + + // The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string + // (or Expression with resultType string). + Server any + + // The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', + // servicePrincipalCredential can be SecureString or + // AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can + // only be AzureKeyVaultSecretReference. + ServicePrincipalCredential SecretBaseClassification + + // The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, + // 'ServicePrincipalCert' for certificate. Type: string (or Expression with + // resultType string). + ServicePrincipalCredentialType any + // The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with // resultType string). ServicePrincipalID any @@ -4918,6 +5096,13 @@ type AzureSQLDWLinkedServiceTypeProperties struct { // The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). Tenant any + + // Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + TrustServerCertificate any + + // The user name to be used when connecting to server. Type: string (or Expression with resultType string). + UserName any } // AzureSQLDWTableDataset - The Azure SQL Data Warehouse dataset. @@ -5019,27 +5204,120 @@ func (a *AzureSQLDatabaseLinkedService) GetLinkedService() *LinkedService { // AzureSQLDatabaseLinkedServiceTypeProperties - Azure SQL Database linked service properties. type AzureSQLDatabaseLinkedServiceTypeProperties struct { - // REQUIRED; The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. - ConnectionString any - // Sql always encrypted properties. AlwaysEncryptedSettings *SQLAlwaysEncryptedProperties + // The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and + // ReadWrite. Type: string (or Expression with resultType string). + ApplicationIntent any + + // The type used for authentication. Type: string. + AuthenticationType *AzureSQLDatabaseAuthenticationType + // Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, // AzureGermany. Default value is the data factory regions’ cloud type. Type: // string (or Expression with resultType string). AzureCloudType any + // The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by + // recommended version. Type: integer (or Expression with resultType integer). + CommandTimeout any + + // The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended + // version. This must be an integer between 0 and 255. Type: integer (or Expression + // with resultType integer). + ConnectRetryCount any + + // The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection + // failure, used by recommended version. This must be an integer between 1 and 60. + // Type: integer (or Expression with resultType integer). + ConnectRetryInterval any + + // The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an + // error, used by recommended version. Type: integer (or Expression with resultType + // integer). + ConnectTimeout any + + // The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + ConnectionString any + // The credential reference containing authentication information. Credential *CredentialReference + // The name of the database, used by recommended version. Type: string (or Expression with resultType string). + Database any + + // Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. + // Possible values are true/yes/mandatory, false/no/optional and strict. Type: + // string (or Expression with resultType string). + Encrypt any + // The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. // Type: string. EncryptedCredential *string + // The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: + // string (or Expression with resultType string). + FailoverPartner any + + // The host name to use when validating the server certificate for the connection. When not specified, the server name from + // the Data Source is used for certificate validation, used by recommended + // version. Type: string (or Expression with resultType string). + HostNameInCertificate any + + // Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account + // credentials are used for authentication (when true), used by recommended + // version. Type: Boolean (or Expression with resultType boolean). + IntegratedSecurity any + + // The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended + // version. Type: integer (or Expression with resultType integer). + LoadBalanceTimeout any + + // The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MaxPoolSize any + + // The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MinPoolSize any + + // If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true + // provides faster detection of and connection to the (currently) active + // server, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultiSubnetFailover any + + // When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel + // all result sets from one batch before it can execute any other batch on + // that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultipleActiveResultSets any + + // The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: + // integer (or Expression with resultType integer). + PacketSize any + // The Azure key vault secret reference of password in connection string. Password *AzureKeyVaultSecretReference + // Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + Pooling any + + // The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string + // (or Expression with resultType string). + Server any + + // The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', + // servicePrincipalCredential can be SecureString or + // AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can + // only be AzureKeyVaultSecretReference. + ServicePrincipalCredential SecretBaseClassification + + // The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, + // 'ServicePrincipalCert' for certificate. Type: string (or Expression with + // resultType string). + ServicePrincipalCredentialType any + // The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType // string). ServicePrincipalID any @@ -5049,6 +5327,13 @@ type AzureSQLDatabaseLinkedServiceTypeProperties struct { // The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). Tenant any + + // Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + TrustServerCertificate any + + // The user name to be used when connecting to server. Type: string (or Expression with resultType string). + UserName any } // AzureSQLMILinkedService - Azure SQL Managed Instance linked service. @@ -5089,27 +5374,120 @@ func (a *AzureSQLMILinkedService) GetLinkedService() *LinkedService { // AzureSQLMILinkedServiceTypeProperties - Azure SQL Managed Instance linked service properties. type AzureSQLMILinkedServiceTypeProperties struct { - // REQUIRED; The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. - ConnectionString any - // Sql always encrypted properties. AlwaysEncryptedSettings *SQLAlwaysEncryptedProperties + // The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and + // ReadWrite. Type: string (or Expression with resultType string). + ApplicationIntent any + + // The type used for authentication. Type: string. + AuthenticationType *AzureSQLMIAuthenticationType + // Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, // AzureGermany. Default value is the data factory regions’ cloud type. Type: // string (or Expression with resultType string). AzureCloudType any + // The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by + // recommended version. Type: integer (or Expression with resultType integer). + CommandTimeout any + + // The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended + // version. This must be an integer between 0 and 255. Type: integer (or Expression + // with resultType integer). + ConnectRetryCount any + + // The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection + // failure, used by recommended version. This must be an integer between 1 and 60. + // Type: integer (or Expression with resultType integer). + ConnectRetryInterval any + + // The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an + // error, used by recommended version. Type: integer (or Expression with resultType + // integer). + ConnectTimeout any + + // The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + ConnectionString any + // The credential reference containing authentication information. Credential *CredentialReference + // The name of the database, used by recommended version. Type: string (or Expression with resultType string). + Database any + + // Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. + // Possible values are true/yes/mandatory, false/no/optional and strict. Type: + // string (or Expression with resultType string). + Encrypt any + // The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. // Type: string. EncryptedCredential *string + // The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: + // string (or Expression with resultType string). + FailoverPartner any + + // The host name to use when validating the server certificate for the connection. When not specified, the server name from + // the Data Source is used for certificate validation, used by recommended + // version. Type: string (or Expression with resultType string). + HostNameInCertificate any + + // Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account + // credentials are used for authentication (when true), used by recommended + // version. Type: Boolean (or Expression with resultType boolean). + IntegratedSecurity any + + // The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended + // version. Type: integer (or Expression with resultType integer). + LoadBalanceTimeout any + + // The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MaxPoolSize any + + // The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MinPoolSize any + + // If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true + // provides faster detection of and connection to the (currently) active + // server, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultiSubnetFailover any + + // When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel + // all result sets from one batch before it can execute any other batch on + // that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultipleActiveResultSets any + + // The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: + // integer (or Expression with resultType integer). + PacketSize any + // The Azure key vault secret reference of password in connection string. Password *AzureKeyVaultSecretReference + // Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + Pooling any + + // The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string + // (or Expression with resultType string). + Server any + + // The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', + // servicePrincipalCredential can be SecureString or + // AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can + // only be AzureKeyVaultSecretReference. + ServicePrincipalCredential SecretBaseClassification + + // The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, + // 'ServicePrincipalCert' for certificate. Type: string (or Expression with + // resultType string). + ServicePrincipalCredentialType any + // The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with // resultType string). ServicePrincipalID any @@ -5119,6 +5497,13 @@ type AzureSQLMILinkedServiceTypeProperties struct { // The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). Tenant any + + // Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + TrustServerCertificate any + + // The user name to be used when connecting to server. Type: string (or Expression with resultType string). + UserName any } // AzureSQLMITableDataset - The Azure SQL Managed Instance dataset. @@ -10169,6 +10554,9 @@ type DynamicsCrmLinkedServiceTypeProperties struct { // Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string). DeploymentType any + // The credential reference containing authentication information. + Credential *CredentialReference + // The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. // Type: string. EncryptedCredential *string @@ -11368,8 +11756,8 @@ type ExpressionV2 struct { // List of nested expressions. Operands []*ExpressionV2 - // Expression operator value Type: string. - Operator *string + // Expression operator value Type: list of strings. + Operators []*string // Type of expressions supported by the system. Type: string. Type *ExpressionV2Type @@ -16643,6 +17031,9 @@ func (l *LakeHouseTableDataset) GetDataset() *Dataset { // LakeHouseTableDatasetTypeProperties - Microsoft Fabric LakeHouse Table dataset properties. type LakeHouseTableDatasetTypeProperties struct { + // The schema name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). + Schema any + // The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). Table any } @@ -17222,6 +17613,9 @@ type ManagedIdentityCredential struct { // Credential description. Description *string + + // Managed identity credential properties. + TypeProperties *ManagedIdentityTypeProperties } // GetCredential implements the CredentialClassification interface for type ManagedIdentityCredential. @@ -17234,6 +17628,12 @@ func (m *ManagedIdentityCredential) GetCredential() *Credential { } } +// ManagedIdentityTypeProperties - Managed identity type properties. +type ManagedIdentityTypeProperties struct { + // The resource id of user assigned managed identity + ResourceID *string +} + // ManagedIntegrationRuntime - Managed integration runtime, including managed elastic and managed dedicated integration runtimes. type ManagedIntegrationRuntime struct { // REQUIRED; Type of integration runtime. @@ -23552,19 +23952,105 @@ func (s *SQLServerLinkedService) GetLinkedService() *LinkedService { // SQLServerLinkedServiceTypeProperties - SQL Server linked service properties. type SQLServerLinkedServiceTypeProperties struct { - // REQUIRED; The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. - ConnectionString any - // Sql always encrypted properties. AlwaysEncryptedSettings *SQLAlwaysEncryptedProperties + // The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and + // ReadWrite. Type: string (or Expression with resultType string). + ApplicationIntent any + + // The type used for authentication. Type: string. + AuthenticationType *SQLServerAuthenticationType + + // The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by + // recommended version. Type: integer (or Expression with resultType integer). + CommandTimeout any + + // The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended + // version. This must be an integer between 0 and 255. Type: integer (or Expression + // with resultType integer). + ConnectRetryCount any + + // The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection + // failure, used by recommended version. This must be an integer between 1 and 60. + // Type: integer (or Expression with resultType integer). + ConnectRetryInterval any + + // The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an + // error, used by recommended version. Type: integer (or Expression with resultType + // integer). + ConnectTimeout any + + // The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + ConnectionString any + + // The name of the database, used by recommended version. Type: string (or Expression with resultType string). + Database any + + // Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. + // Possible values are true/yes/mandatory, false/no/optional and strict. Type: + // string (or Expression with resultType string). + Encrypt any + // The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. // Type: string. EncryptedCredential *string + // The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: + // string (or Expression with resultType string). + FailoverPartner any + + // The host name to use when validating the server certificate for the connection. When not specified, the server name from + // the Data Source is used for certificate validation, used by recommended + // version. Type: string (or Expression with resultType string). + HostNameInCertificate any + + // Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account + // credentials are used for authentication (when true), used by recommended + // version. Type: Boolean (or Expression with resultType boolean). + IntegratedSecurity any + + // The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended + // version. Type: integer (or Expression with resultType integer). + LoadBalanceTimeout any + + // The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MaxPoolSize any + + // The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended + // version. Type: integer (or Expression with resultType integer). + MinPoolSize any + + // If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true + // provides faster detection of and connection to the (currently) active + // server, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultiSubnetFailover any + + // When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel + // all result sets from one batch before it can execute any other batch on + // that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). + MultipleActiveResultSets any + + // The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: + // integer (or Expression with resultType integer). + PacketSize any + // The on-premises Windows authentication password. Password SecretBaseClassification + // Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + Pooling any + + // The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string + // (or Expression with resultType string). + Server any + + // Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by + // recommended version. Type: Boolean (or Expression with resultType boolean). + TrustServerCertificate any + // The on-premises Windows authentication user name. Type: string (or Expression with resultType string). UserName any } @@ -24830,7 +25316,14 @@ type SalesforceServiceCloudV2Source struct { // The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). MaxConcurrentConnections any - // Database query. Type: string (or Expression with resultType string). + // You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: + // https://developer.salesforce.com/docs/atlas.en-us.apiasynch.meta/api + // asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in + // ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression + // with resultType string). + Query any + + // Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). SOQLQuery any // Source retry count. Type: integer (or Expression with resultType integer). @@ -25167,10 +25660,17 @@ type SalesforceV2Source struct { // The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). MaxConcurrentConnections any + // You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: + // https://developer.salesforce.com/docs/atlas.en-us.apiasynch.meta/api + // asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in + // ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression + // with resultType string). + Query any + // Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). QueryTimeout any - // Database query. Type: string (or Expression with resultType string). + // Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). SOQLQuery any // Source retry count. Type: integer (or Expression with resultType integer). @@ -26829,8 +27329,9 @@ type ScriptActivityScriptBlock struct { // REQUIRED; The query text. Type: string (or Expression with resultType string). Text any - // REQUIRED; The type of the query. Type: string. - Type *ScriptType + // REQUIRED; The type of the query. Please refer to the ScriptType for valid options. Type: string (or Expression with resultType + // string). + Type any // Array of script parameters. Type: array. Parameters []*ScriptActivityParameter diff --git a/sdk/resourcemanager/datafactory/armdatafactory/models_serde.go b/sdk/resourcemanager/datafactory/armdatafactory/models_serde.go index 3ec25afb5244..55d499f991e1 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/models_serde.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/models_serde.go @@ -1022,9 +1022,29 @@ func (a *AmazonRdsForSQLServerLinkedService) UnmarshalJSON(data []byte) error { func (a AmazonRdsForSQLServerLinkedServiceTypeProperties) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) populate(objectMap, "alwaysEncryptedSettings", a.AlwaysEncryptedSettings) + populateAny(objectMap, "applicationIntent", a.ApplicationIntent) + populate(objectMap, "authenticationType", a.AuthenticationType) + populateAny(objectMap, "commandTimeout", a.CommandTimeout) + populateAny(objectMap, "connectRetryCount", a.ConnectRetryCount) + populateAny(objectMap, "connectRetryInterval", a.ConnectRetryInterval) + populateAny(objectMap, "connectTimeout", a.ConnectTimeout) populateAny(objectMap, "connectionString", a.ConnectionString) + populateAny(objectMap, "database", a.Database) + populateAny(objectMap, "encrypt", a.Encrypt) populate(objectMap, "encryptedCredential", a.EncryptedCredential) + populateAny(objectMap, "failoverPartner", a.FailoverPartner) + populateAny(objectMap, "hostNameInCertificate", a.HostNameInCertificate) + populateAny(objectMap, "integratedSecurity", a.IntegratedSecurity) + populateAny(objectMap, "loadBalanceTimeout", a.LoadBalanceTimeout) + populateAny(objectMap, "maxPoolSize", a.MaxPoolSize) + populateAny(objectMap, "minPoolSize", a.MinPoolSize) + populateAny(objectMap, "multiSubnetFailover", a.MultiSubnetFailover) + populateAny(objectMap, "multipleActiveResultSets", a.MultipleActiveResultSets) + populateAny(objectMap, "packetSize", a.PacketSize) populate(objectMap, "password", a.Password) + populateAny(objectMap, "pooling", a.Pooling) + populateAny(objectMap, "server", a.Server) + populateAny(objectMap, "trustServerCertificate", a.TrustServerCertificate) populateAny(objectMap, "userName", a.UserName) return json.Marshal(objectMap) } @@ -1041,15 +1061,75 @@ func (a *AmazonRdsForSQLServerLinkedServiceTypeProperties) UnmarshalJSON(data [] case "alwaysEncryptedSettings": err = unpopulate(val, "AlwaysEncryptedSettings", &a.AlwaysEncryptedSettings) delete(rawMsg, key) + case "applicationIntent": + err = unpopulate(val, "ApplicationIntent", &a.ApplicationIntent) + delete(rawMsg, key) + case "authenticationType": + err = unpopulate(val, "AuthenticationType", &a.AuthenticationType) + delete(rawMsg, key) + case "commandTimeout": + err = unpopulate(val, "CommandTimeout", &a.CommandTimeout) + delete(rawMsg, key) + case "connectRetryCount": + err = unpopulate(val, "ConnectRetryCount", &a.ConnectRetryCount) + delete(rawMsg, key) + case "connectRetryInterval": + err = unpopulate(val, "ConnectRetryInterval", &a.ConnectRetryInterval) + delete(rawMsg, key) + case "connectTimeout": + err = unpopulate(val, "ConnectTimeout", &a.ConnectTimeout) + delete(rawMsg, key) case "connectionString": err = unpopulate(val, "ConnectionString", &a.ConnectionString) delete(rawMsg, key) + case "database": + err = unpopulate(val, "Database", &a.Database) + delete(rawMsg, key) + case "encrypt": + err = unpopulate(val, "Encrypt", &a.Encrypt) + delete(rawMsg, key) case "encryptedCredential": err = unpopulate(val, "EncryptedCredential", &a.EncryptedCredential) delete(rawMsg, key) + case "failoverPartner": + err = unpopulate(val, "FailoverPartner", &a.FailoverPartner) + delete(rawMsg, key) + case "hostNameInCertificate": + err = unpopulate(val, "HostNameInCertificate", &a.HostNameInCertificate) + delete(rawMsg, key) + case "integratedSecurity": + err = unpopulate(val, "IntegratedSecurity", &a.IntegratedSecurity) + delete(rawMsg, key) + case "loadBalanceTimeout": + err = unpopulate(val, "LoadBalanceTimeout", &a.LoadBalanceTimeout) + delete(rawMsg, key) + case "maxPoolSize": + err = unpopulate(val, "MaxPoolSize", &a.MaxPoolSize) + delete(rawMsg, key) + case "minPoolSize": + err = unpopulate(val, "MinPoolSize", &a.MinPoolSize) + delete(rawMsg, key) + case "multiSubnetFailover": + err = unpopulate(val, "MultiSubnetFailover", &a.MultiSubnetFailover) + delete(rawMsg, key) + case "multipleActiveResultSets": + err = unpopulate(val, "MultipleActiveResultSets", &a.MultipleActiveResultSets) + delete(rawMsg, key) + case "packetSize": + err = unpopulate(val, "PacketSize", &a.PacketSize) + delete(rawMsg, key) case "password": a.Password, err = unmarshalSecretBaseClassification(val) delete(rawMsg, key) + case "pooling": + err = unpopulate(val, "Pooling", &a.Pooling) + delete(rawMsg, key) + case "server": + err = unpopulate(val, "Server", &a.Server) + delete(rawMsg, key) + case "trustServerCertificate": + err = unpopulate(val, "TrustServerCertificate", &a.TrustServerCertificate) + delete(rawMsg, key) case "userName": err = unpopulate(val, "UserName", &a.UserName) delete(rawMsg, key) @@ -8249,14 +8329,37 @@ func (a *AzureSQLDWLinkedService) UnmarshalJSON(data []byte) error { // MarshalJSON implements the json.Marshaller interface for type AzureSQLDWLinkedServiceTypeProperties. func (a AzureSQLDWLinkedServiceTypeProperties) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) + populateAny(objectMap, "applicationIntent", a.ApplicationIntent) + populate(objectMap, "authenticationType", a.AuthenticationType) populateAny(objectMap, "azureCloudType", a.AzureCloudType) + populateAny(objectMap, "commandTimeout", a.CommandTimeout) + populateAny(objectMap, "connectRetryCount", a.ConnectRetryCount) + populateAny(objectMap, "connectRetryInterval", a.ConnectRetryInterval) + populateAny(objectMap, "connectTimeout", a.ConnectTimeout) populateAny(objectMap, "connectionString", a.ConnectionString) populate(objectMap, "credential", a.Credential) + populateAny(objectMap, "database", a.Database) + populateAny(objectMap, "encrypt", a.Encrypt) populate(objectMap, "encryptedCredential", a.EncryptedCredential) + populateAny(objectMap, "failoverPartner", a.FailoverPartner) + populateAny(objectMap, "hostNameInCertificate", a.HostNameInCertificate) + populateAny(objectMap, "integratedSecurity", a.IntegratedSecurity) + populateAny(objectMap, "loadBalanceTimeout", a.LoadBalanceTimeout) + populateAny(objectMap, "maxPoolSize", a.MaxPoolSize) + populateAny(objectMap, "minPoolSize", a.MinPoolSize) + populateAny(objectMap, "multiSubnetFailover", a.MultiSubnetFailover) + populateAny(objectMap, "multipleActiveResultSets", a.MultipleActiveResultSets) + populateAny(objectMap, "packetSize", a.PacketSize) populate(objectMap, "password", a.Password) + populateAny(objectMap, "pooling", a.Pooling) + populateAny(objectMap, "server", a.Server) + populate(objectMap, "servicePrincipalCredential", a.ServicePrincipalCredential) + populateAny(objectMap, "servicePrincipalCredentialType", a.ServicePrincipalCredentialType) populateAny(objectMap, "servicePrincipalId", a.ServicePrincipalID) populate(objectMap, "servicePrincipalKey", a.ServicePrincipalKey) populateAny(objectMap, "tenant", a.Tenant) + populateAny(objectMap, "trustServerCertificate", a.TrustServerCertificate) + populateAny(objectMap, "userName", a.UserName) return json.Marshal(objectMap) } @@ -8269,21 +8372,84 @@ func (a *AzureSQLDWLinkedServiceTypeProperties) UnmarshalJSON(data []byte) error for key, val := range rawMsg { var err error switch key { + case "applicationIntent": + err = unpopulate(val, "ApplicationIntent", &a.ApplicationIntent) + delete(rawMsg, key) + case "authenticationType": + err = unpopulate(val, "AuthenticationType", &a.AuthenticationType) + delete(rawMsg, key) case "azureCloudType": err = unpopulate(val, "AzureCloudType", &a.AzureCloudType) delete(rawMsg, key) + case "commandTimeout": + err = unpopulate(val, "CommandTimeout", &a.CommandTimeout) + delete(rawMsg, key) + case "connectRetryCount": + err = unpopulate(val, "ConnectRetryCount", &a.ConnectRetryCount) + delete(rawMsg, key) + case "connectRetryInterval": + err = unpopulate(val, "ConnectRetryInterval", &a.ConnectRetryInterval) + delete(rawMsg, key) + case "connectTimeout": + err = unpopulate(val, "ConnectTimeout", &a.ConnectTimeout) + delete(rawMsg, key) case "connectionString": err = unpopulate(val, "ConnectionString", &a.ConnectionString) delete(rawMsg, key) case "credential": err = unpopulate(val, "Credential", &a.Credential) delete(rawMsg, key) + case "database": + err = unpopulate(val, "Database", &a.Database) + delete(rawMsg, key) + case "encrypt": + err = unpopulate(val, "Encrypt", &a.Encrypt) + delete(rawMsg, key) case "encryptedCredential": err = unpopulate(val, "EncryptedCredential", &a.EncryptedCredential) delete(rawMsg, key) + case "failoverPartner": + err = unpopulate(val, "FailoverPartner", &a.FailoverPartner) + delete(rawMsg, key) + case "hostNameInCertificate": + err = unpopulate(val, "HostNameInCertificate", &a.HostNameInCertificate) + delete(rawMsg, key) + case "integratedSecurity": + err = unpopulate(val, "IntegratedSecurity", &a.IntegratedSecurity) + delete(rawMsg, key) + case "loadBalanceTimeout": + err = unpopulate(val, "LoadBalanceTimeout", &a.LoadBalanceTimeout) + delete(rawMsg, key) + case "maxPoolSize": + err = unpopulate(val, "MaxPoolSize", &a.MaxPoolSize) + delete(rawMsg, key) + case "minPoolSize": + err = unpopulate(val, "MinPoolSize", &a.MinPoolSize) + delete(rawMsg, key) + case "multiSubnetFailover": + err = unpopulate(val, "MultiSubnetFailover", &a.MultiSubnetFailover) + delete(rawMsg, key) + case "multipleActiveResultSets": + err = unpopulate(val, "MultipleActiveResultSets", &a.MultipleActiveResultSets) + delete(rawMsg, key) + case "packetSize": + err = unpopulate(val, "PacketSize", &a.PacketSize) + delete(rawMsg, key) case "password": err = unpopulate(val, "Password", &a.Password) delete(rawMsg, key) + case "pooling": + err = unpopulate(val, "Pooling", &a.Pooling) + delete(rawMsg, key) + case "server": + err = unpopulate(val, "Server", &a.Server) + delete(rawMsg, key) + case "servicePrincipalCredential": + a.ServicePrincipalCredential, err = unmarshalSecretBaseClassification(val) + delete(rawMsg, key) + case "servicePrincipalCredentialType": + err = unpopulate(val, "ServicePrincipalCredentialType", &a.ServicePrincipalCredentialType) + delete(rawMsg, key) case "servicePrincipalId": err = unpopulate(val, "ServicePrincipalID", &a.ServicePrincipalID) delete(rawMsg, key) @@ -8293,6 +8459,12 @@ func (a *AzureSQLDWLinkedServiceTypeProperties) UnmarshalJSON(data []byte) error case "tenant": err = unpopulate(val, "Tenant", &a.Tenant) delete(rawMsg, key) + case "trustServerCertificate": + err = unpopulate(val, "TrustServerCertificate", &a.TrustServerCertificate) + delete(rawMsg, key) + case "userName": + err = unpopulate(val, "UserName", &a.UserName) + delete(rawMsg, key) } if err != nil { return fmt.Errorf("unmarshalling type %T: %v", a, err) @@ -8476,14 +8648,37 @@ func (a *AzureSQLDatabaseLinkedService) UnmarshalJSON(data []byte) error { func (a AzureSQLDatabaseLinkedServiceTypeProperties) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) populate(objectMap, "alwaysEncryptedSettings", a.AlwaysEncryptedSettings) + populateAny(objectMap, "applicationIntent", a.ApplicationIntent) + populate(objectMap, "authenticationType", a.AuthenticationType) populateAny(objectMap, "azureCloudType", a.AzureCloudType) + populateAny(objectMap, "commandTimeout", a.CommandTimeout) + populateAny(objectMap, "connectRetryCount", a.ConnectRetryCount) + populateAny(objectMap, "connectRetryInterval", a.ConnectRetryInterval) + populateAny(objectMap, "connectTimeout", a.ConnectTimeout) populateAny(objectMap, "connectionString", a.ConnectionString) populate(objectMap, "credential", a.Credential) + populateAny(objectMap, "database", a.Database) + populateAny(objectMap, "encrypt", a.Encrypt) populate(objectMap, "encryptedCredential", a.EncryptedCredential) + populateAny(objectMap, "failoverPartner", a.FailoverPartner) + populateAny(objectMap, "hostNameInCertificate", a.HostNameInCertificate) + populateAny(objectMap, "integratedSecurity", a.IntegratedSecurity) + populateAny(objectMap, "loadBalanceTimeout", a.LoadBalanceTimeout) + populateAny(objectMap, "maxPoolSize", a.MaxPoolSize) + populateAny(objectMap, "minPoolSize", a.MinPoolSize) + populateAny(objectMap, "multiSubnetFailover", a.MultiSubnetFailover) + populateAny(objectMap, "multipleActiveResultSets", a.MultipleActiveResultSets) + populateAny(objectMap, "packetSize", a.PacketSize) populate(objectMap, "password", a.Password) + populateAny(objectMap, "pooling", a.Pooling) + populateAny(objectMap, "server", a.Server) + populate(objectMap, "servicePrincipalCredential", a.ServicePrincipalCredential) + populateAny(objectMap, "servicePrincipalCredentialType", a.ServicePrincipalCredentialType) populateAny(objectMap, "servicePrincipalId", a.ServicePrincipalID) populate(objectMap, "servicePrincipalKey", a.ServicePrincipalKey) populateAny(objectMap, "tenant", a.Tenant) + populateAny(objectMap, "trustServerCertificate", a.TrustServerCertificate) + populateAny(objectMap, "userName", a.UserName) return json.Marshal(objectMap) } @@ -8499,21 +8694,84 @@ func (a *AzureSQLDatabaseLinkedServiceTypeProperties) UnmarshalJSON(data []byte) case "alwaysEncryptedSettings": err = unpopulate(val, "AlwaysEncryptedSettings", &a.AlwaysEncryptedSettings) delete(rawMsg, key) + case "applicationIntent": + err = unpopulate(val, "ApplicationIntent", &a.ApplicationIntent) + delete(rawMsg, key) + case "authenticationType": + err = unpopulate(val, "AuthenticationType", &a.AuthenticationType) + delete(rawMsg, key) case "azureCloudType": err = unpopulate(val, "AzureCloudType", &a.AzureCloudType) delete(rawMsg, key) + case "commandTimeout": + err = unpopulate(val, "CommandTimeout", &a.CommandTimeout) + delete(rawMsg, key) + case "connectRetryCount": + err = unpopulate(val, "ConnectRetryCount", &a.ConnectRetryCount) + delete(rawMsg, key) + case "connectRetryInterval": + err = unpopulate(val, "ConnectRetryInterval", &a.ConnectRetryInterval) + delete(rawMsg, key) + case "connectTimeout": + err = unpopulate(val, "ConnectTimeout", &a.ConnectTimeout) + delete(rawMsg, key) case "connectionString": err = unpopulate(val, "ConnectionString", &a.ConnectionString) delete(rawMsg, key) case "credential": err = unpopulate(val, "Credential", &a.Credential) delete(rawMsg, key) + case "database": + err = unpopulate(val, "Database", &a.Database) + delete(rawMsg, key) + case "encrypt": + err = unpopulate(val, "Encrypt", &a.Encrypt) + delete(rawMsg, key) case "encryptedCredential": err = unpopulate(val, "EncryptedCredential", &a.EncryptedCredential) delete(rawMsg, key) + case "failoverPartner": + err = unpopulate(val, "FailoverPartner", &a.FailoverPartner) + delete(rawMsg, key) + case "hostNameInCertificate": + err = unpopulate(val, "HostNameInCertificate", &a.HostNameInCertificate) + delete(rawMsg, key) + case "integratedSecurity": + err = unpopulate(val, "IntegratedSecurity", &a.IntegratedSecurity) + delete(rawMsg, key) + case "loadBalanceTimeout": + err = unpopulate(val, "LoadBalanceTimeout", &a.LoadBalanceTimeout) + delete(rawMsg, key) + case "maxPoolSize": + err = unpopulate(val, "MaxPoolSize", &a.MaxPoolSize) + delete(rawMsg, key) + case "minPoolSize": + err = unpopulate(val, "MinPoolSize", &a.MinPoolSize) + delete(rawMsg, key) + case "multiSubnetFailover": + err = unpopulate(val, "MultiSubnetFailover", &a.MultiSubnetFailover) + delete(rawMsg, key) + case "multipleActiveResultSets": + err = unpopulate(val, "MultipleActiveResultSets", &a.MultipleActiveResultSets) + delete(rawMsg, key) + case "packetSize": + err = unpopulate(val, "PacketSize", &a.PacketSize) + delete(rawMsg, key) case "password": err = unpopulate(val, "Password", &a.Password) delete(rawMsg, key) + case "pooling": + err = unpopulate(val, "Pooling", &a.Pooling) + delete(rawMsg, key) + case "server": + err = unpopulate(val, "Server", &a.Server) + delete(rawMsg, key) + case "servicePrincipalCredential": + a.ServicePrincipalCredential, err = unmarshalSecretBaseClassification(val) + delete(rawMsg, key) + case "servicePrincipalCredentialType": + err = unpopulate(val, "ServicePrincipalCredentialType", &a.ServicePrincipalCredentialType) + delete(rawMsg, key) case "servicePrincipalId": err = unpopulate(val, "ServicePrincipalID", &a.ServicePrincipalID) delete(rawMsg, key) @@ -8523,6 +8781,12 @@ func (a *AzureSQLDatabaseLinkedServiceTypeProperties) UnmarshalJSON(data []byte) case "tenant": err = unpopulate(val, "Tenant", &a.Tenant) delete(rawMsg, key) + case "trustServerCertificate": + err = unpopulate(val, "TrustServerCertificate", &a.TrustServerCertificate) + delete(rawMsg, key) + case "userName": + err = unpopulate(val, "UserName", &a.UserName) + delete(rawMsg, key) } if err != nil { return fmt.Errorf("unmarshalling type %T: %v", a, err) @@ -8597,14 +8861,37 @@ func (a *AzureSQLMILinkedService) UnmarshalJSON(data []byte) error { func (a AzureSQLMILinkedServiceTypeProperties) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) populate(objectMap, "alwaysEncryptedSettings", a.AlwaysEncryptedSettings) + populateAny(objectMap, "applicationIntent", a.ApplicationIntent) + populate(objectMap, "authenticationType", a.AuthenticationType) populateAny(objectMap, "azureCloudType", a.AzureCloudType) + populateAny(objectMap, "commandTimeout", a.CommandTimeout) + populateAny(objectMap, "connectRetryCount", a.ConnectRetryCount) + populateAny(objectMap, "connectRetryInterval", a.ConnectRetryInterval) + populateAny(objectMap, "connectTimeout", a.ConnectTimeout) populateAny(objectMap, "connectionString", a.ConnectionString) populate(objectMap, "credential", a.Credential) + populateAny(objectMap, "database", a.Database) + populateAny(objectMap, "encrypt", a.Encrypt) populate(objectMap, "encryptedCredential", a.EncryptedCredential) + populateAny(objectMap, "failoverPartner", a.FailoverPartner) + populateAny(objectMap, "hostNameInCertificate", a.HostNameInCertificate) + populateAny(objectMap, "integratedSecurity", a.IntegratedSecurity) + populateAny(objectMap, "loadBalanceTimeout", a.LoadBalanceTimeout) + populateAny(objectMap, "maxPoolSize", a.MaxPoolSize) + populateAny(objectMap, "minPoolSize", a.MinPoolSize) + populateAny(objectMap, "multiSubnetFailover", a.MultiSubnetFailover) + populateAny(objectMap, "multipleActiveResultSets", a.MultipleActiveResultSets) + populateAny(objectMap, "packetSize", a.PacketSize) populate(objectMap, "password", a.Password) + populateAny(objectMap, "pooling", a.Pooling) + populateAny(objectMap, "server", a.Server) + populate(objectMap, "servicePrincipalCredential", a.ServicePrincipalCredential) + populateAny(objectMap, "servicePrincipalCredentialType", a.ServicePrincipalCredentialType) populateAny(objectMap, "servicePrincipalId", a.ServicePrincipalID) populate(objectMap, "servicePrincipalKey", a.ServicePrincipalKey) populateAny(objectMap, "tenant", a.Tenant) + populateAny(objectMap, "trustServerCertificate", a.TrustServerCertificate) + populateAny(objectMap, "userName", a.UserName) return json.Marshal(objectMap) } @@ -8620,21 +8907,84 @@ func (a *AzureSQLMILinkedServiceTypeProperties) UnmarshalJSON(data []byte) error case "alwaysEncryptedSettings": err = unpopulate(val, "AlwaysEncryptedSettings", &a.AlwaysEncryptedSettings) delete(rawMsg, key) + case "applicationIntent": + err = unpopulate(val, "ApplicationIntent", &a.ApplicationIntent) + delete(rawMsg, key) + case "authenticationType": + err = unpopulate(val, "AuthenticationType", &a.AuthenticationType) + delete(rawMsg, key) case "azureCloudType": err = unpopulate(val, "AzureCloudType", &a.AzureCloudType) delete(rawMsg, key) + case "commandTimeout": + err = unpopulate(val, "CommandTimeout", &a.CommandTimeout) + delete(rawMsg, key) + case "connectRetryCount": + err = unpopulate(val, "ConnectRetryCount", &a.ConnectRetryCount) + delete(rawMsg, key) + case "connectRetryInterval": + err = unpopulate(val, "ConnectRetryInterval", &a.ConnectRetryInterval) + delete(rawMsg, key) + case "connectTimeout": + err = unpopulate(val, "ConnectTimeout", &a.ConnectTimeout) + delete(rawMsg, key) case "connectionString": err = unpopulate(val, "ConnectionString", &a.ConnectionString) delete(rawMsg, key) case "credential": err = unpopulate(val, "Credential", &a.Credential) delete(rawMsg, key) + case "database": + err = unpopulate(val, "Database", &a.Database) + delete(rawMsg, key) + case "encrypt": + err = unpopulate(val, "Encrypt", &a.Encrypt) + delete(rawMsg, key) case "encryptedCredential": err = unpopulate(val, "EncryptedCredential", &a.EncryptedCredential) delete(rawMsg, key) + case "failoverPartner": + err = unpopulate(val, "FailoverPartner", &a.FailoverPartner) + delete(rawMsg, key) + case "hostNameInCertificate": + err = unpopulate(val, "HostNameInCertificate", &a.HostNameInCertificate) + delete(rawMsg, key) + case "integratedSecurity": + err = unpopulate(val, "IntegratedSecurity", &a.IntegratedSecurity) + delete(rawMsg, key) + case "loadBalanceTimeout": + err = unpopulate(val, "LoadBalanceTimeout", &a.LoadBalanceTimeout) + delete(rawMsg, key) + case "maxPoolSize": + err = unpopulate(val, "MaxPoolSize", &a.MaxPoolSize) + delete(rawMsg, key) + case "minPoolSize": + err = unpopulate(val, "MinPoolSize", &a.MinPoolSize) + delete(rawMsg, key) + case "multiSubnetFailover": + err = unpopulate(val, "MultiSubnetFailover", &a.MultiSubnetFailover) + delete(rawMsg, key) + case "multipleActiveResultSets": + err = unpopulate(val, "MultipleActiveResultSets", &a.MultipleActiveResultSets) + delete(rawMsg, key) + case "packetSize": + err = unpopulate(val, "PacketSize", &a.PacketSize) + delete(rawMsg, key) case "password": err = unpopulate(val, "Password", &a.Password) delete(rawMsg, key) + case "pooling": + err = unpopulate(val, "Pooling", &a.Pooling) + delete(rawMsg, key) + case "server": + err = unpopulate(val, "Server", &a.Server) + delete(rawMsg, key) + case "servicePrincipalCredential": + a.ServicePrincipalCredential, err = unmarshalSecretBaseClassification(val) + delete(rawMsg, key) + case "servicePrincipalCredentialType": + err = unpopulate(val, "ServicePrincipalCredentialType", &a.ServicePrincipalCredentialType) + delete(rawMsg, key) case "servicePrincipalId": err = unpopulate(val, "ServicePrincipalID", &a.ServicePrincipalID) delete(rawMsg, key) @@ -8644,6 +8994,12 @@ func (a *AzureSQLMILinkedServiceTypeProperties) UnmarshalJSON(data []byte) error case "tenant": err = unpopulate(val, "Tenant", &a.Tenant) delete(rawMsg, key) + case "trustServerCertificate": + err = unpopulate(val, "TrustServerCertificate", &a.TrustServerCertificate) + delete(rawMsg, key) + case "userName": + err = unpopulate(val, "UserName", &a.UserName) + delete(rawMsg, key) } if err != nil { return fmt.Errorf("unmarshalling type %T: %v", a, err) @@ -17662,6 +18018,7 @@ func (d *DynamicsCrmLinkedService) UnmarshalJSON(data []byte) error { func (d DynamicsCrmLinkedServiceTypeProperties) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) populateAny(objectMap, "authenticationType", d.AuthenticationType) + populate(objectMap, "credential", d.Credential) populateAny(objectMap, "deploymentType", d.DeploymentType) populate(objectMap, "encryptedCredential", d.EncryptedCredential) populateAny(objectMap, "hostName", d.HostName) @@ -17688,6 +18045,9 @@ func (d *DynamicsCrmLinkedServiceTypeProperties) UnmarshalJSON(data []byte) erro case "authenticationType": err = unpopulate(val, "AuthenticationType", &d.AuthenticationType) delete(rawMsg, key) + case "credential": + err = unpopulate(val, "Credential", &d.Credential) + delete(rawMsg, key) case "deploymentType": err = unpopulate(val, "DeploymentType", &d.DeploymentType) delete(rawMsg, key) @@ -19703,7 +20063,7 @@ func (e *Expression) UnmarshalJSON(data []byte) error { func (e ExpressionV2) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) populate(objectMap, "operands", e.Operands) - populate(objectMap, "operator", e.Operator) + populate(objectMap, "operators", e.Operators) populate(objectMap, "type", e.Type) populate(objectMap, "value", e.Value) return json.Marshal(objectMap) @@ -19721,8 +20081,8 @@ func (e *ExpressionV2) UnmarshalJSON(data []byte) error { case "operands": err = unpopulate(val, "Operands", &e.Operands) delete(rawMsg, key) - case "operator": - err = unpopulate(val, "Operator", &e.Operator) + case "operators": + err = unpopulate(val, "Operators", &e.Operators) delete(rawMsg, key) case "type": err = unpopulate(val, "Type", &e.Type) @@ -28869,6 +29229,7 @@ func (l *LakeHouseTableDataset) UnmarshalJSON(data []byte) error { // MarshalJSON implements the json.Marshaller interface for type LakeHouseTableDatasetTypeProperties. func (l LakeHouseTableDatasetTypeProperties) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) + populateAny(objectMap, "schema", l.Schema) populateAny(objectMap, "table", l.Table) return json.Marshal(objectMap) } @@ -28882,6 +29243,9 @@ func (l *LakeHouseTableDatasetTypeProperties) UnmarshalJSON(data []byte) error { for key, val := range rawMsg { var err error switch key { + case "schema": + err = unpopulate(val, "Schema", &l.Schema) + delete(rawMsg, key) case "table": err = unpopulate(val, "Table", &l.Table) delete(rawMsg, key) @@ -29983,6 +30347,7 @@ func (m ManagedIdentityCredential) MarshalJSON() ([]byte, error) { populate(objectMap, "annotations", m.Annotations) populate(objectMap, "description", m.Description) objectMap["type"] = "ManagedIdentity" + populate(objectMap, "typeProperties", m.TypeProperties) if m.AdditionalProperties != nil { for key, val := range m.AdditionalProperties { objectMap[key] = val @@ -30009,6 +30374,9 @@ func (m *ManagedIdentityCredential) UnmarshalJSON(data []byte) error { case "type": err = unpopulate(val, "Type", &m.Type) delete(rawMsg, key) + case "typeProperties": + err = unpopulate(val, "TypeProperties", &m.TypeProperties) + delete(rawMsg, key) default: if m.AdditionalProperties == nil { m.AdditionalProperties = map[string]any{} @@ -30027,6 +30395,33 @@ func (m *ManagedIdentityCredential) UnmarshalJSON(data []byte) error { return nil } +// MarshalJSON implements the json.Marshaller interface for type ManagedIdentityTypeProperties. +func (m ManagedIdentityTypeProperties) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]any) + populate(objectMap, "resourceId", m.ResourceID) + return json.Marshal(objectMap) +} + +// UnmarshalJSON implements the json.Unmarshaller interface for type ManagedIdentityTypeProperties. +func (m *ManagedIdentityTypeProperties) UnmarshalJSON(data []byte) error { + var rawMsg map[string]json.RawMessage + if err := json.Unmarshal(data, &rawMsg); err != nil { + return fmt.Errorf("unmarshalling type %T: %v", m, err) + } + for key, val := range rawMsg { + var err error + switch key { + case "resourceId": + err = unpopulate(val, "ResourceID", &m.ResourceID) + delete(rawMsg, key) + } + if err != nil { + return fmt.Errorf("unmarshalling type %T: %v", m, err) + } + } + return nil +} + // MarshalJSON implements the json.Marshaller interface for type ManagedIntegrationRuntime. func (m ManagedIntegrationRuntime) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) @@ -41632,9 +42027,29 @@ func (s *SQLServerLinkedService) UnmarshalJSON(data []byte) error { func (s SQLServerLinkedServiceTypeProperties) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) populate(objectMap, "alwaysEncryptedSettings", s.AlwaysEncryptedSettings) + populateAny(objectMap, "applicationIntent", s.ApplicationIntent) + populate(objectMap, "authenticationType", s.AuthenticationType) + populateAny(objectMap, "commandTimeout", s.CommandTimeout) + populateAny(objectMap, "connectRetryCount", s.ConnectRetryCount) + populateAny(objectMap, "connectRetryInterval", s.ConnectRetryInterval) + populateAny(objectMap, "connectTimeout", s.ConnectTimeout) populateAny(objectMap, "connectionString", s.ConnectionString) + populateAny(objectMap, "database", s.Database) + populateAny(objectMap, "encrypt", s.Encrypt) populate(objectMap, "encryptedCredential", s.EncryptedCredential) + populateAny(objectMap, "failoverPartner", s.FailoverPartner) + populateAny(objectMap, "hostNameInCertificate", s.HostNameInCertificate) + populateAny(objectMap, "integratedSecurity", s.IntegratedSecurity) + populateAny(objectMap, "loadBalanceTimeout", s.LoadBalanceTimeout) + populateAny(objectMap, "maxPoolSize", s.MaxPoolSize) + populateAny(objectMap, "minPoolSize", s.MinPoolSize) + populateAny(objectMap, "multiSubnetFailover", s.MultiSubnetFailover) + populateAny(objectMap, "multipleActiveResultSets", s.MultipleActiveResultSets) + populateAny(objectMap, "packetSize", s.PacketSize) populate(objectMap, "password", s.Password) + populateAny(objectMap, "pooling", s.Pooling) + populateAny(objectMap, "server", s.Server) + populateAny(objectMap, "trustServerCertificate", s.TrustServerCertificate) populateAny(objectMap, "userName", s.UserName) return json.Marshal(objectMap) } @@ -41651,15 +42066,75 @@ func (s *SQLServerLinkedServiceTypeProperties) UnmarshalJSON(data []byte) error case "alwaysEncryptedSettings": err = unpopulate(val, "AlwaysEncryptedSettings", &s.AlwaysEncryptedSettings) delete(rawMsg, key) + case "applicationIntent": + err = unpopulate(val, "ApplicationIntent", &s.ApplicationIntent) + delete(rawMsg, key) + case "authenticationType": + err = unpopulate(val, "AuthenticationType", &s.AuthenticationType) + delete(rawMsg, key) + case "commandTimeout": + err = unpopulate(val, "CommandTimeout", &s.CommandTimeout) + delete(rawMsg, key) + case "connectRetryCount": + err = unpopulate(val, "ConnectRetryCount", &s.ConnectRetryCount) + delete(rawMsg, key) + case "connectRetryInterval": + err = unpopulate(val, "ConnectRetryInterval", &s.ConnectRetryInterval) + delete(rawMsg, key) + case "connectTimeout": + err = unpopulate(val, "ConnectTimeout", &s.ConnectTimeout) + delete(rawMsg, key) case "connectionString": err = unpopulate(val, "ConnectionString", &s.ConnectionString) delete(rawMsg, key) + case "database": + err = unpopulate(val, "Database", &s.Database) + delete(rawMsg, key) + case "encrypt": + err = unpopulate(val, "Encrypt", &s.Encrypt) + delete(rawMsg, key) case "encryptedCredential": err = unpopulate(val, "EncryptedCredential", &s.EncryptedCredential) delete(rawMsg, key) + case "failoverPartner": + err = unpopulate(val, "FailoverPartner", &s.FailoverPartner) + delete(rawMsg, key) + case "hostNameInCertificate": + err = unpopulate(val, "HostNameInCertificate", &s.HostNameInCertificate) + delete(rawMsg, key) + case "integratedSecurity": + err = unpopulate(val, "IntegratedSecurity", &s.IntegratedSecurity) + delete(rawMsg, key) + case "loadBalanceTimeout": + err = unpopulate(val, "LoadBalanceTimeout", &s.LoadBalanceTimeout) + delete(rawMsg, key) + case "maxPoolSize": + err = unpopulate(val, "MaxPoolSize", &s.MaxPoolSize) + delete(rawMsg, key) + case "minPoolSize": + err = unpopulate(val, "MinPoolSize", &s.MinPoolSize) + delete(rawMsg, key) + case "multiSubnetFailover": + err = unpopulate(val, "MultiSubnetFailover", &s.MultiSubnetFailover) + delete(rawMsg, key) + case "multipleActiveResultSets": + err = unpopulate(val, "MultipleActiveResultSets", &s.MultipleActiveResultSets) + delete(rawMsg, key) + case "packetSize": + err = unpopulate(val, "PacketSize", &s.PacketSize) + delete(rawMsg, key) case "password": s.Password, err = unmarshalSecretBaseClassification(val) delete(rawMsg, key) + case "pooling": + err = unpopulate(val, "Pooling", &s.Pooling) + delete(rawMsg, key) + case "server": + err = unpopulate(val, "Server", &s.Server) + delete(rawMsg, key) + case "trustServerCertificate": + err = unpopulate(val, "TrustServerCertificate", &s.TrustServerCertificate) + delete(rawMsg, key) case "userName": err = unpopulate(val, "UserName", &s.UserName) delete(rawMsg, key) @@ -43763,6 +44238,7 @@ func (s SalesforceServiceCloudV2Source) MarshalJSON() ([]byte, error) { populateAny(objectMap, "disableMetricsCollection", s.DisableMetricsCollection) populateAny(objectMap, "includeDeletedObjects", s.IncludeDeletedObjects) populateAny(objectMap, "maxConcurrentConnections", s.MaxConcurrentConnections) + populateAny(objectMap, "query", s.Query) populateAny(objectMap, "SOQLQuery", s.SOQLQuery) populateAny(objectMap, "sourceRetryCount", s.SourceRetryCount) populateAny(objectMap, "sourceRetryWait", s.SourceRetryWait) @@ -43796,6 +44272,9 @@ func (s *SalesforceServiceCloudV2Source) UnmarshalJSON(data []byte) error { case "maxConcurrentConnections": err = unpopulate(val, "MaxConcurrentConnections", &s.MaxConcurrentConnections) delete(rawMsg, key) + case "query": + err = unpopulate(val, "Query", &s.Query) + delete(rawMsg, key) case "SOQLQuery": err = unpopulate(val, "SOQLQuery", &s.SOQLQuery) delete(rawMsg, key) @@ -44277,6 +44756,7 @@ func (s SalesforceV2Source) MarshalJSON() ([]byte, error) { populateAny(objectMap, "disableMetricsCollection", s.DisableMetricsCollection) populateAny(objectMap, "includeDeletedObjects", s.IncludeDeletedObjects) populateAny(objectMap, "maxConcurrentConnections", s.MaxConcurrentConnections) + populateAny(objectMap, "query", s.Query) populateAny(objectMap, "queryTimeout", s.QueryTimeout) populateAny(objectMap, "SOQLQuery", s.SOQLQuery) populateAny(objectMap, "sourceRetryCount", s.SourceRetryCount) @@ -44311,6 +44791,9 @@ func (s *SalesforceV2Source) UnmarshalJSON(data []byte) error { case "maxConcurrentConnections": err = unpopulate(val, "MaxConcurrentConnections", &s.MaxConcurrentConnections) delete(rawMsg, key) + case "query": + err = unpopulate(val, "Query", &s.Query) + delete(rawMsg, key) case "queryTimeout": err = unpopulate(val, "QueryTimeout", &s.QueryTimeout) delete(rawMsg, key) @@ -46913,7 +47396,7 @@ func (s ScriptActivityScriptBlock) MarshalJSON() ([]byte, error) { objectMap := make(map[string]any) populate(objectMap, "parameters", s.Parameters) populateAny(objectMap, "text", s.Text) - populate(objectMap, "type", s.Type) + populateAny(objectMap, "type", s.Type) return json.Marshal(objectMap) } diff --git a/sdk/resourcemanager/datafactory/armdatafactory/operations_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/operations_client_example_test.go index f2d28dc4b403..83fe581663b2 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/operations_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/operations_client_example_test.go @@ -14,10 +14,10 @@ import ( "log" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Operations_List.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Operations_List.json func ExampleOperationsClient_NewListPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/pipelineruns_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/pipelineruns_client_example_test.go index 17069e786c01..66292f323ed7 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/pipelineruns_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/pipelineruns_client_example_test.go @@ -17,10 +17,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_QueryByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_QueryByFactory.json func ExamplePipelineRunsClient_QueryByFactory() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -99,7 +99,7 @@ func ExamplePipelineRunsClient_QueryByFactory() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Get.json func ExamplePipelineRunsClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -140,7 +140,7 @@ func ExamplePipelineRunsClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Cancel.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PipelineRuns_Cancel.json func ExamplePipelineRunsClient_Cancel() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/pipelines_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/pipelines_client_example_test.go index f471b03d0e5b..bedf917ee7b1 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/pipelines_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/pipelines_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_ListByFactory.json func ExamplePipelinesClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -107,7 +107,7 @@ func ExamplePipelinesClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Create.json func ExamplePipelinesClient_CreateOrUpdate_pipelinesCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -275,7 +275,7 @@ func ExamplePipelinesClient_CreateOrUpdate_pipelinesCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Update.json func ExamplePipelinesClient_CreateOrUpdate_pipelinesUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -417,7 +417,7 @@ func ExamplePipelinesClient_CreateOrUpdate_pipelinesUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Get.json func ExamplePipelinesClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -508,7 +508,7 @@ func ExamplePipelinesClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_Delete.json func ExamplePipelinesClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -525,7 +525,7 @@ func ExamplePipelinesClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_CreateRun.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Pipelines_CreateRun.json func ExamplePipelinesClient_CreateRun() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnection_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnection_client_example_test.go index 4dd6660aa825..10a6fa53fd7c 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnection_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnection_client_example_test.go @@ -15,10 +15,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ApproveRejectPrivateEndpointConnection.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/ApproveRejectPrivateEndpointConnection.json func ExamplePrivateEndpointConnectionClient_CreateOrUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -65,7 +65,7 @@ func ExamplePrivateEndpointConnectionClient_CreateOrUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GetPrivateEndpointConnection.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GetPrivateEndpointConnection.json func ExamplePrivateEndpointConnectionClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -101,7 +101,7 @@ func ExamplePrivateEndpointConnectionClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DeletePrivateEndpointConnection.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/DeletePrivateEndpointConnection.json func ExamplePrivateEndpointConnectionClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnections_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnections_client_example_test.go index c8c31a19386d..1b951579a479 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnections_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/privateendpointconnections_client_example_test.go @@ -14,10 +14,10 @@ import ( "log" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PrivateEndPointConnections_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/PrivateEndPointConnections_ListByFactory.json func ExamplePrivateEndPointConnectionsClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/privatelinkresources_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/privatelinkresources_client_example_test.go index d41cb55161eb..65ba702ff0f3 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/privatelinkresources_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/privatelinkresources_client_example_test.go @@ -14,10 +14,10 @@ import ( "log" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GetPrivateLinkResources.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GetPrivateLinkResources.json func ExamplePrivateLinkResourcesClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/triggerruns_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/triggerruns_client_example_test.go index 659d76075114..490e47c6fcad 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/triggerruns_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/triggerruns_client_example_test.go @@ -17,10 +17,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_Rerun.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_Rerun.json func ExampleTriggerRunsClient_Rerun() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -37,7 +37,7 @@ func ExampleTriggerRunsClient_Rerun() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_Cancel.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_Cancel.json func ExampleTriggerRunsClient_Cancel() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -54,7 +54,7 @@ func ExampleTriggerRunsClient_Cancel() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_QueryByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/TriggerRuns_QueryByFactory.json func ExampleTriggerRunsClient_QueryByFactory() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { diff --git a/sdk/resourcemanager/datafactory/armdatafactory/triggers_client_example_test.go b/sdk/resourcemanager/datafactory/armdatafactory/triggers_client_example_test.go index a5527fc2c761..4b1f53c8f0e7 100644 --- a/sdk/resourcemanager/datafactory/armdatafactory/triggers_client_example_test.go +++ b/sdk/resourcemanager/datafactory/armdatafactory/triggers_client_example_test.go @@ -17,10 +17,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v8" ) -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_ListByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_ListByFactory.json func ExampleTriggersClient_NewListByFactoryPager() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -80,7 +80,7 @@ func ExampleTriggersClient_NewListByFactoryPager() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_QueryByFactory.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_QueryByFactory.json func ExampleTriggersClient_QueryByFactory() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -120,7 +120,7 @@ func ExampleTriggersClient_QueryByFactory() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Create.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Create.json func ExampleTriggersClient_CreateOrUpdate_triggersCreate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -196,7 +196,7 @@ func ExampleTriggersClient_CreateOrUpdate_triggersCreate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Update.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Update.json func ExampleTriggersClient_CreateOrUpdate_triggersUpdate() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -274,7 +274,7 @@ func ExampleTriggersClient_CreateOrUpdate_triggersUpdate() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Get.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Get.json func ExampleTriggersClient_Get() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -325,7 +325,7 @@ func ExampleTriggersClient_Get() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Delete.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Delete.json func ExampleTriggersClient_Delete() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -342,7 +342,7 @@ func ExampleTriggersClient_Delete() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_SubscribeToEvents.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_SubscribeToEvents.json func ExampleTriggersClient_BeginSubscribeToEvents() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -370,7 +370,7 @@ func ExampleTriggersClient_BeginSubscribeToEvents() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_GetEventSubscriptionStatus.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_GetEventSubscriptionStatus.json func ExampleTriggersClient_GetEventSubscriptionStatus() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -394,7 +394,7 @@ func ExampleTriggersClient_GetEventSubscriptionStatus() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_UnsubscribeFromEvents.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_UnsubscribeFromEvents.json func ExampleTriggersClient_BeginUnsubscribeFromEvents() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -422,7 +422,7 @@ func ExampleTriggersClient_BeginUnsubscribeFromEvents() { // } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Start.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Start.json func ExampleTriggersClient_BeginStart() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { @@ -443,7 +443,7 @@ func ExampleTriggersClient_BeginStart() { } } -// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Stop.json +// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/f6f50c6388fd5836fa142384641b8353a99874ef/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/examples/Triggers_Stop.json func ExampleTriggersClient_BeginStop() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil {