Skip to content

Commit

Permalink
Generated from a1a2802f3e2f8172f9e34d95d1f25e9590f50dfa
Browse files Browse the repository at this point in the history
Added missing reference
  • Loading branch information
SDK Automation committed Apr 29, 2020
1 parent 1f38fbf commit 69393b5
Show file tree
Hide file tree
Showing 16 changed files with 508 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CsmUsageQuota,
CsmUsageQuotaCollection,
CustomHostnameAnalysisResult,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CsmUsageQuota,
CsmUsageQuotaCollection,
CustomHostnameAnalysisResult,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
2 changes: 2 additions & 0 deletions sdk/appservice/arm-appservice/src/models/domainsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
124 changes: 124 additions & 0 deletions sdk/appservice/arm-appservice/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4758,6 +4758,30 @@ export interface CsmCopySlotEntity {
siteConfig: SiteConfig;
}

/**
* Publishing Credentials Policies parameters.
*/
export interface CsmPublishingCredentialsPoliciesEntity extends ProxyOnlyResource {
/**
* <code>true</code> to allow access to a publishing method; otherwise, <code>false</code>.
*/
allow: boolean;
}

/**
* Publishing Credentials Policies collection.
*/
export interface CsmPublishingCredentialsPoliciesCollection extends ProxyOnlyResource {
/**
* Whether FTP is allowed.
*/
ftp: CsmPublishingCredentialsPoliciesEntity;
/**
* Whether Scm Basic Auth is allowed.
*/
scm: CsmPublishingCredentialsPoliciesEntity;
}

/**
* Publishing options for requested profile.
*/
Expand Down Expand Up @@ -12857,6 +12881,106 @@ export type WebAppsListBackupStatusSecretsResponse = BackupItem & {
};
};

/**
* Contains response data for the getBasicPublishingCredentialsPolicies operation.
*/
export type WebAppsGetBasicPublishingCredentialsPoliciesResponse = CsmPublishingCredentialsPoliciesCollection & {
/**
* 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: CsmPublishingCredentialsPoliciesCollection;
};
};

/**
* Contains response data for the getFtpAllowed operation.
*/
export type WebAppsGetFtpAllowedResponse = CsmPublishingCredentialsPoliciesEntity & {
/**
* 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: CsmPublishingCredentialsPoliciesEntity;
};
};

/**
* Contains response data for the updateFtpAllowed operation.
*/
export type WebAppsUpdateFtpAllowedResponse = CsmPublishingCredentialsPoliciesEntity & {
/**
* 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: CsmPublishingCredentialsPoliciesEntity;
};
};

/**
* Contains response data for the getScmAllowed operation.
*/
export type WebAppsGetScmAllowedResponse = CsmPublishingCredentialsPoliciesEntity & {
/**
* 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: CsmPublishingCredentialsPoliciesEntity;
};
};

/**
* Contains response data for the updateScmAllowed operation.
*/
export type WebAppsUpdateScmAllowedResponse = CsmPublishingCredentialsPoliciesEntity & {
/**
* 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: CsmPublishingCredentialsPoliciesEntity;
};
};

/**
* Contains response data for the listConfigurations operation.
*/
Expand Down
45 changes: 45 additions & 0 deletions sdk/appservice/arm-appservice/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8476,6 +8476,51 @@ export const CsmCopySlotEntity: msRest.CompositeMapper = {
}
};

export const CsmPublishingCredentialsPoliciesEntity: msRest.CompositeMapper = {
serializedName: "CsmPublishingCredentialsPoliciesEntity",
type: {
name: "Composite",
className: "CsmPublishingCredentialsPoliciesEntity",
modelProperties: {
...ProxyOnlyResource.type.modelProperties,
allow: {
required: true,
serializedName: "properties.allow",
type: {
name: "Boolean"
}
}
}
}
};

export const CsmPublishingCredentialsPoliciesCollection: msRest.CompositeMapper = {
serializedName: "CsmPublishingCredentialsPoliciesCollection",
type: {
name: "Composite",
className: "CsmPublishingCredentialsPoliciesCollection",
modelProperties: {
...ProxyOnlyResource.type.modelProperties,
ftp: {
required: true,
serializedName: "properties.ftp",
type: {
name: "Composite",
className: "CsmPublishingCredentialsPoliciesEntity"
}
},
scm: {
required: true,
serializedName: "properties.scm",
type: {
name: "Composite",
className: "CsmPublishingCredentialsPoliciesEntity"
}
}
}
}
};

export const CsmPublishingProfileOptions: msRest.CompositeMapper = {
serializedName: "CsmPublishingProfileOptions",
type: {
Expand Down
2 changes: 2 additions & 0 deletions sdk/appservice/arm-appservice/src/models/providerMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ export {
CsmOperationDescription,
CsmOperationDescriptionProperties,
CsmOperationDisplay,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
ContainerThrottlingData,
ContinuousWebJob,
CorsSettings,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CustomHostnameAnalysisResult,
DatabaseBackupSetting,
DataSource,
Expand Down
2 changes: 2 additions & 0 deletions sdk/appservice/arm-appservice/src/models/webAppsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ export {
ContinuousWebJobCollection,
CorsSettings,
CsmCopySlotEntity,
CsmPublishingCredentialsPoliciesCollection,
CsmPublishingCredentialsPoliciesEntity,
CsmPublishingProfileOptions,
CsmSlotEntity,
CsmUsageQuota,
Expand Down
Loading

0 comments on commit 69393b5

Please sign in to comment.