Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ export {
Eventhub,
CaptureDescription,
Destination,
MigrationConfigProperties,
IpFilterRule,
VirtualNetworkRule
MigrationConfigProperties
} from "../models/mappers";

Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ export {
PremiumMessagingRegions,
PremiumMessagingRegionsProperties,
ArmDisasterRecovery,
MigrationConfigProperties,
IpFilterRule,
VirtualNetworkRule
MigrationConfigProperties
} from "../models/mappers";

235 changes: 0 additions & 235 deletions packages/@azure/arm-servicebus/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1190,44 +1190,6 @@ export interface MigrationConfigProperties extends Resource {
readonly migrationState?: string;
}

/**
* @interface
* An interface representing IpFilterRule.
* Single item in a List or Get IpFilterRules operation
*
* @extends Resource
*/
export interface IpFilterRule extends Resource {
/**
* @member {string} [ipMask] IP Mask
*/
ipMask?: string;
/**
* @member {IPAction} [action] The IP Filter Action. Possible values include:
* 'Accept', 'Reject'
*/
action?: IPAction;
/**
* @member {string} [filterName] IP Filter name
*/
filterName?: string;
}

/**
* @interface
* An interface representing VirtualNetworkRule.
* Single item in a List or Get VirtualNetworkRules operation
*
* @extends Resource
*/
export interface VirtualNetworkRule extends Resource {
/**
* @member {string} [virtualNetworkSubnetId] Resource ID of Virtual Network
* Subnet
*/
virtualNetworkSubnetId?: string;
}

/**
* @interface
* An interface representing QueuesListByNamespaceOptionalParams.
Expand Down Expand Up @@ -1377,36 +1339,6 @@ export interface SBAuthorizationRuleListResult extends Array<SBAuthorizationRule
nextLink?: string;
}

/**
* @interface
* An interface representing the IpFilterRuleListResult.
* The response from the List namespace operation.
*
* @extends Array<IpFilterRule>
*/
export interface IpFilterRuleListResult extends Array<IpFilterRule> {
/**
* @member {string} [nextLink] Link to the next set of results. Not empty if
* Value contains an incomplete list of IpFilter Rules
*/
nextLink?: string;
}

/**
* @interface
* An interface representing the VirtualNetworkRuleListResult.
* The response from the List namespace operation.
*
* @extends Array<VirtualNetworkRule>
*/
export interface VirtualNetworkRuleListResult extends Array<VirtualNetworkRule> {
/**
* @member {string} [nextLink] Link to the next set of results. Not empty if
* Value contains an incomplete list of VirtualNetwork Rules
*/
nextLink?: string;
}

/**
* @interface
* An interface representing the ArmDisasterRecoveryListResult.
Expand Down Expand Up @@ -1678,21 +1610,6 @@ export enum RoleDisasterRecovery {
Secondary = 'Secondary',
}

/**
* Defines values for IPAction.
* Possible values include: 'Accept', 'Reject'
* There could be more values for this enum apart from the ones defined here.If
* you want to set a value that is not from the known values then you can do
* the following:
* let param: IPAction = <IPAction>"someUnknownValueThatWillStillBeValid";
* @readonly
* @enum {string}
*/
export enum IPAction {
Accept = 'Accept',
Reject = 'Reject',
}

/**
* Contains response data for the list operation.
*/
Expand Down Expand Up @@ -1940,120 +1857,6 @@ export type NamespacesRegenerateKeysResponse = AccessKeys & {
};
};

/**
* Contains response data for the listIpFilterRules operation.
*/
export type NamespacesListIpFilterRulesResponse = IpFilterRuleListResult & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: IpFilterRuleListResult;
};
};

/**
* Contains response data for the createOrUpdateIpFilterRule operation.
*/
export type NamespacesCreateOrUpdateIpFilterRuleResponse = IpFilterRule & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: IpFilterRule;
};
};

/**
* Contains response data for the getIpFilterRule operation.
*/
export type NamespacesGetIpFilterRuleResponse = IpFilterRule & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: IpFilterRule;
};
};

/**
* Contains response data for the listVirtualNetworkRules operation.
*/
export type NamespacesListVirtualNetworkRulesResponse = VirtualNetworkRuleListResult & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: VirtualNetworkRuleListResult;
};
};

/**
* Contains response data for the createOrUpdateVirtualNetworkRule operation.
*/
export type NamespacesCreateOrUpdateVirtualNetworkRuleResponse = VirtualNetworkRule & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: VirtualNetworkRule;
};
};

/**
* Contains response data for the getVirtualNetworkRule operation.
*/
export type NamespacesGetVirtualNetworkRuleResponse = VirtualNetworkRule & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: VirtualNetworkRule;
};
};

/**
* Contains response data for the beginCreateOrUpdate operation.
*/
Expand Down Expand Up @@ -2130,44 +1933,6 @@ export type NamespacesListAuthorizationRulesNextResponse = SBAuthorizationRuleLi
};
};

/**
* Contains response data for the listIpFilterRulesNext operation.
*/
export type NamespacesListIpFilterRulesNextResponse = IpFilterRuleListResult & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: IpFilterRuleListResult;
};
};

/**
* Contains response data for the listVirtualNetworkRulesNext operation.
*/
export type NamespacesListVirtualNetworkRulesNextResponse = VirtualNetworkRuleListResult & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: VirtualNetworkRuleListResult;
};
};

/**
* Contains response data for the checkNameAvailabilityMethod operation.
*/
Expand Down
Loading