Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
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
30 changes: 0 additions & 30 deletions lib/services/containerRegistryManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,22 +228,6 @@ export interface Sku {
readonly tier?: string;
}

/**
* @class
* Initializes a new instance of the RegistryIdentity class.
* @constructor
* The identity of the container registry.
*
* @member {string} [type] The type of identity used for the registry.
* @member {string} [principalId] The principal ID of registry identity.
* @member {string} [tenantId] The tenant ID associated with the registry.
*/
export interface RegistryIdentity {
type?: string;
principalId?: string;
tenantId?: string;
}

/**
* @class
* Initializes a new instance of the Status class.
Expand Down Expand Up @@ -308,12 +292,6 @@ export interface Resource extends BaseResource {
* 'Standard', 'Premium'
* @member {string} [sku.tier] The SKU tier based on the SKU name. Possible
* values include: 'Classic', 'Basic', 'Standard', 'Premium'
* @member {object} [identity] The identity of the container registry.
* @member {string} [identity.type] The type of identity used for the registry.
* @member {string} [identity.principalId] The principal ID of registry
* identity.
* @member {string} [identity.tenantId] The tenant ID associated with the
* registry.
* @member {string} [loginServer] The URL that can be used to log into the
* container registry.
* @member {date} [creationDate] The creation date of the container registry in
Expand All @@ -336,7 +314,6 @@ export interface Resource extends BaseResource {
*/
export interface Registry extends Resource {
sku: Sku;
identity?: RegistryIdentity;
readonly loginServer?: string;
readonly creationDate?: Date;
readonly provisioningState?: string;
Expand All @@ -358,12 +335,6 @@ export interface Registry extends Resource {
* 'Standard', 'Premium'
* @member {string} [sku.tier] The SKU tier based on the SKU name. Possible
* values include: 'Classic', 'Basic', 'Standard', 'Premium'
* @member {object} [identity] The identity of the container registry.
* @member {string} [identity.type] The type of identity used for the registry.
* @member {string} [identity.principalId] The principal ID of registry
* identity.
* @member {string} [identity.tenantId] The tenant ID associated with the
* registry.
* @member {boolean} [adminUserEnabled] The value that indicates whether the
* admin user is enabled.
* @member {object} [storageAccount] The parameters of a storage account for
Expand All @@ -375,7 +346,6 @@ export interface Registry extends Resource {
export interface RegistryUpdateParameters {
tags?: { [propertyName: string]: string };
sku?: Sku;
identity?: RegistryIdentity;
adminUserEnabled?: boolean;
storageAccount?: StorageAccountProperties;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ exports.OperationMetricSpecificationDefinition = require('./operationMetricSpeci
exports.OperationServiceSpecificationDefinition = require('./operationServiceSpecificationDefinition');
exports.OperationDefinition = require('./operationDefinition');
exports.Sku = require('./sku');
exports.RegistryIdentity = require('./registryIdentity');
exports.Status = require('./status');
exports.StorageAccountProperties = require('./storageAccountProperties');
exports.Resource = require('./resource');
Expand Down
15 changes: 0 additions & 15 deletions lib/services/containerRegistryManagement/lib/models/registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ class Registry extends models['Resource'] {
* 'Basic', 'Standard', 'Premium'
* @member {string} [sku.tier] The SKU tier based on the SKU name. Possible
* values include: 'Classic', 'Basic', 'Standard', 'Premium'
* @member {object} [identity] The identity of the container registry.
* @member {string} [identity.type] The type of identity used for the
* registry.
* @member {string} [identity.principalId] The principal ID of registry
* identity.
* @member {string} [identity.tenantId] The tenant ID associated with the
* registry.
* @member {string} [loginServer] The URL that can be used to log into the
* container registry.
* @member {date} [creationDate] The creation date of the container registry
Expand Down Expand Up @@ -126,14 +119,6 @@ class Registry extends models['Resource'] {
className: 'Sku'
}
},
identity: {
required: false,
serializedName: 'identity',
type: {
name: 'Composite',
className: 'RegistryIdentity'
}
},
loginServer: {
required: false,
readOnly: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ class RegistryUpdateParameters {
* 'Basic', 'Standard', 'Premium'
* @member {string} [sku.tier] The SKU tier based on the SKU name. Possible
* values include: 'Classic', 'Basic', 'Standard', 'Premium'
* @member {object} [identity] The identity of the container registry.
* @member {string} [identity.type] The type of identity used for the
* registry.
* @member {string} [identity.principalId] The principal ID of registry
* identity.
* @member {string} [identity.tenantId] The tenant ID associated with the
* registry.
* @member {boolean} [adminUserEnabled] The value that indicates whether the
* admin user is enabled.
* @member {object} [storageAccount] The parameters of a storage account for
Expand Down Expand Up @@ -79,14 +72,6 @@ class RegistryUpdateParameters {
className: 'Sku'
}
},
identity: {
required: false,
serializedName: 'identity',
type: {
name: 'Composite',
className: 'RegistryIdentity'
}
},
adminUserEnabled: {
required: false,
serializedName: 'properties.adminUserEnabled',
Expand Down
92 changes: 0 additions & 92 deletions lib/services/containerRegistryManagement/lib/operations/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,17 +307,6 @@ export interface Registries {
* Required for registry creation. Possible values include: 'Classic', 'Basic',
* 'Standard', 'Premium'
*
* @param {object} [registry.identity] The identity of the container registry.
*
* @param {string} [registry.identity.type] The type of identity used for the
* registry.
*
* @param {string} [registry.identity.principalId] The principal ID of registry
* identity.
*
* @param {string} [registry.identity.tenantId] The tenant ID associated with
* the registry.
*
* @param {boolean} [registry.adminUserEnabled] The value that indicates
* whether the admin user is enabled.
*
Expand Down Expand Up @@ -361,17 +350,6 @@ export interface Registries {
* Required for registry creation. Possible values include: 'Classic', 'Basic',
* 'Standard', 'Premium'
*
* @param {object} [registry.identity] The identity of the container registry.
*
* @param {string} [registry.identity.type] The type of identity used for the
* registry.
*
* @param {string} [registry.identity.principalId] The principal ID of registry
* identity.
*
* @param {string} [registry.identity.tenantId] The tenant ID associated with
* the registry.
*
* @param {boolean} [registry.adminUserEnabled] The value that indicates
* whether the admin user is enabled.
*
Expand Down Expand Up @@ -499,18 +477,6 @@ export interface Registries {
* container registry. Required for registry creation. Possible values include:
* 'Classic', 'Basic', 'Standard', 'Premium'
*
* @param {object} [registryUpdateParameters.identity] The identity of the
* container registry.
*
* @param {string} [registryUpdateParameters.identity.type] The type of
* identity used for the registry.
*
* @param {string} [registryUpdateParameters.identity.principalId] The
* principal ID of registry identity.
*
* @param {string} [registryUpdateParameters.identity.tenantId] The tenant ID
* associated with the registry.
*
* @param {boolean} [registryUpdateParameters.adminUserEnabled] The value that
* indicates whether the admin user is enabled.
*
Expand Down Expand Up @@ -556,18 +522,6 @@ export interface Registries {
* container registry. Required for registry creation. Possible values include:
* 'Classic', 'Basic', 'Standard', 'Premium'
*
* @param {object} [registryUpdateParameters.identity] The identity of the
* container registry.
*
* @param {string} [registryUpdateParameters.identity.type] The type of
* identity used for the registry.
*
* @param {string} [registryUpdateParameters.identity.principalId] The
* principal ID of registry identity.
*
* @param {string} [registryUpdateParameters.identity.tenantId] The tenant ID
* associated with the registry.
*
* @param {boolean} [registryUpdateParameters.adminUserEnabled] The value that
* indicates whether the admin user is enabled.
*
Expand Down Expand Up @@ -1380,17 +1334,6 @@ export interface Registries {
* Required for registry creation. Possible values include: 'Classic', 'Basic',
* 'Standard', 'Premium'
*
* @param {object} [registry.identity] The identity of the container registry.
*
* @param {string} [registry.identity.type] The type of identity used for the
* registry.
*
* @param {string} [registry.identity.principalId] The principal ID of registry
* identity.
*
* @param {string} [registry.identity.tenantId] The tenant ID associated with
* the registry.
*
* @param {boolean} [registry.adminUserEnabled] The value that indicates
* whether the admin user is enabled.
*
Expand Down Expand Up @@ -1434,17 +1377,6 @@ export interface Registries {
* Required for registry creation. Possible values include: 'Classic', 'Basic',
* 'Standard', 'Premium'
*
* @param {object} [registry.identity] The identity of the container registry.
*
* @param {string} [registry.identity.type] The type of identity used for the
* registry.
*
* @param {string} [registry.identity.principalId] The principal ID of registry
* identity.
*
* @param {string} [registry.identity.tenantId] The tenant ID associated with
* the registry.
*
* @param {boolean} [registry.adminUserEnabled] The value that indicates
* whether the admin user is enabled.
*
Expand Down Expand Up @@ -1572,18 +1504,6 @@ export interface Registries {
* container registry. Required for registry creation. Possible values include:
* 'Classic', 'Basic', 'Standard', 'Premium'
*
* @param {object} [registryUpdateParameters.identity] The identity of the
* container registry.
*
* @param {string} [registryUpdateParameters.identity.type] The type of
* identity used for the registry.
*
* @param {string} [registryUpdateParameters.identity.principalId] The
* principal ID of registry identity.
*
* @param {string} [registryUpdateParameters.identity.tenantId] The tenant ID
* associated with the registry.
*
* @param {boolean} [registryUpdateParameters.adminUserEnabled] The value that
* indicates whether the admin user is enabled.
*
Expand Down Expand Up @@ -1629,18 +1549,6 @@ export interface Registries {
* container registry. Required for registry creation. Possible values include:
* 'Classic', 'Basic', 'Standard', 'Premium'
*
* @param {object} [registryUpdateParameters.identity] The identity of the
* container registry.
*
* @param {string} [registryUpdateParameters.identity.type] The type of
* identity used for the registry.
*
* @param {string} [registryUpdateParameters.identity.principalId] The
* principal ID of registry identity.
*
* @param {string} [registryUpdateParameters.identity.tenantId] The tenant ID
* associated with the registry.
*
* @param {boolean} [registryUpdateParameters.adminUserEnabled] The value that
* indicates whether the admin user is enabled.
*
Expand Down
Loading