Skip to content

Commit

Permalink
Generated from 9b674d406b9a607a918baab1aa4781e73f118d37
Browse files Browse the repository at this point in the history
add newline
  • Loading branch information
SDK Automation committed Jul 26, 2020
1 parent b67d221 commit d8ee63f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
12 changes: 12 additions & 0 deletions sdk/containerregistry/arm-containerregistry/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ export interface ProxyResource extends BaseResource {
* An object that represents an export pipeline for a container registry.
*/
export interface ExportPipeline extends ProxyResource {
/**
* The location of the export pipeline.
*/
location?: string;
/**
* The identity of the export pipeline.
*/
Expand Down Expand Up @@ -227,6 +231,10 @@ export interface PipelineTriggerProperties {
* An object that represents an import pipeline for a container registry.
*/
export interface ImportPipeline extends ProxyResource {
/**
* The location of the import pipeline.
*/
location?: string;
/**
* The identity of the import pipeline.
*/
Expand Down Expand Up @@ -1746,6 +1754,10 @@ export interface RunGetLogResult {
* The link to logs for a run on a azure container registry.
*/
logLink?: string;
/**
* The link to logs in registry for a run on a azure container registry.
*/
logArtifactLink?: string;
}

/**
Expand Down
18 changes: 18 additions & 0 deletions sdk/containerregistry/arm-containerregistry/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,12 @@ export const ExportPipeline: msRest.CompositeMapper = {
className: "ExportPipeline",
modelProperties: {
...ProxyResource.type.modelProperties,
location: {
serializedName: "location",
type: {
name: "String"
}
},
identity: {
serializedName: "identity",
type: {
Expand Down Expand Up @@ -362,6 +368,12 @@ export const ImportPipeline: msRest.CompositeMapper = {
className: "ImportPipeline",
modelProperties: {
...ProxyResource.type.modelProperties,
location: {
serializedName: "location",
type: {
name: "String"
}
},
identity: {
serializedName: "identity",
type: {
Expand Down Expand Up @@ -2861,6 +2873,12 @@ export const RunGetLogResult: msRest.CompositeMapper = {
type: {
name: "String"
}
},
logArtifactLink: {
serializedName: "logArtifactLink",
type: {
name: "String"
}
}
}
}
Expand Down

0 comments on commit d8ee63f

Please sign in to comment.