Skip to content

Commit a9da0b1

Browse files
author
SDK Automation
committed
Update from master
1 parent d152538 commit a9da0b1

File tree

3 files changed

+144
-97
lines changed

3 files changed

+144
-97
lines changed

sdk/synapse/arm-synapse/src/models/index.ts

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,10 +1598,12 @@ export interface Workspace extends TrackedResource {
15981598
*/
15991599
sqlAdministratorLoginPassword?: string;
16001600
/**
1601-
* Workspace managed resource group
1602-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
1601+
* Workspace managed resource group. The resource group name uniquely identifies the resource
1602+
* group within the user subscriptionId. The resource group name must be no longer than 90
1603+
* characters long, and must be alphanumeric characters (Char.IsLetterOrDigit()) and '-', '_',
1604+
* '(', ')' and'.'. Note that the name cannot end with '.'
16031605
*/
1604-
readonly managedResourceGroupName?: string;
1606+
managedResourceGroupName?: string;
16051607
/**
16061608
* Resource provisioning state
16071609
* **NOTE: This property will not be serialized. It can only be populated by the server.**
@@ -1628,6 +1630,11 @@ export interface Workspace extends TrackedResource {
16281630
* Private endpoint connections to the workspace
16291631
*/
16301632
privateEndpointConnections?: PrivateEndpointConnection[];
1633+
/**
1634+
* Workspace level configs and feature flags
1635+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
1636+
*/
1637+
readonly extraProperties?: { [propertyName: string]: any };
16311638
/**
16321639
* Identity of the workspace
16331640
*/
@@ -3199,6 +3206,17 @@ export interface IntegrationRuntimesCreateOptionalParams extends msRest.RequestO
31993206
ifMatch?: string;
32003207
}
32013208

3209+
/**
3210+
* Optional Parameters.
3211+
*/
3212+
export interface IntegrationRuntimesBeginCreateOptionalParams extends msRest.RequestOptionsBase {
3213+
/**
3214+
* ETag of the integration runtime entity. Should only be specified for update, for which it
3215+
* should match existing entity or can be * for unconditional update.
3216+
*/
3217+
ifMatch?: string;
3218+
}
3219+
32023220
/**
32033221
* Optional Parameters.
32043222
*/
@@ -5715,6 +5733,26 @@ export type IntegrationRuntimesStartResponse = IntegrationRuntimeStatusResponse
57155733
};
57165734
};
57175735

5736+
/**
5737+
* Contains response data for the beginCreate operation.
5738+
*/
5739+
export type IntegrationRuntimesBeginCreateResponse = IntegrationRuntimeResource & {
5740+
/**
5741+
* The underlying HTTP response.
5742+
*/
5743+
_response: msRest.HttpResponse & {
5744+
/**
5745+
* The response body as text (string format)
5746+
*/
5747+
bodyAsText: string;
5748+
5749+
/**
5750+
* The response body as parsed JSON or XML
5751+
*/
5752+
parsedBody: IntegrationRuntimeResource;
5753+
};
5754+
};
5755+
57185756
/**
57195757
* Contains response data for the listByWorkspaceNext operation.
57205758
*/

sdk/synapse/arm-synapse/src/models/mappers.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2434,7 +2434,6 @@ export const Workspace: msRest.CompositeMapper = {
24342434
}
24352435
},
24362436
managedResourceGroupName: {
2437-
readOnly: true,
24382437
serializedName: "properties.managedResourceGroupName",
24392438
type: {
24402439
name: "String"
@@ -2489,6 +2488,18 @@ export const Workspace: msRest.CompositeMapper = {
24892488
}
24902489
}
24912490
},
2491+
extraProperties: {
2492+
readOnly: true,
2493+
serializedName: "properties.extraProperties",
2494+
type: {
2495+
name: "Dictionary",
2496+
value: {
2497+
type: {
2498+
name: "Object"
2499+
}
2500+
}
2501+
}
2502+
},
24922503
identity: {
24932504
serializedName: "identity",
24942505
type: {

0 commit comments

Comments
 (0)