Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Key Vault Certificates] Generated code update (9726 9069 9590) #9733

Closed
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
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-certificates/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"plugins": ["@azure/azure-sdk"],
"extends": ["plugin:@azure/azure-sdk/azure-sdk-base"],
"ignorePatterns": ["src/core"],
"ignorePatterns": ["src/generated"],
"rules": {
"@typescript-eslint/no-this-alias": "off",
"no-invalid-this": "off",
Expand Down
3 changes: 1 addition & 2 deletions sdk/keyvault/keyvault-certificates/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/src/core/*
!/src/core/challengeBasedAuthenticationPolicy.ts
/src/generated/*
14 changes: 1 addition & 13 deletions sdk/keyvault/keyvault-certificates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"lint:terminal": "eslint package.json api-extractor.json src test --ext .ts",
"pack": "npm pack 2>&1",
"prebuild": "npm run clean",
"regenerate": "npx autorest swagger/README.md --typescript",
"regenerate": "npx autorest swagger/README.md --typescript --version=3.0.6267",
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
"test:node": "npm run clean && npm run build:test && npm run unit-test:node",
"test": "npm run clean && npm run build:test && npm run unit-test",
Expand All @@ -72,18 +72,6 @@
"unit-test": "npm run unit-test:node && npm run unit-test:browser"
},
"sideEffects": false,
"//metadata": {
"constantPaths": [
{
"path": "src/core/keyVaultClientContext.ts",
"prefix": "packageVersion"
},
{
"path": "src/core/utils/constants.ts",
"prefix": "SDK_VERSION"
}
]
},
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-http": "^1.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { PollOperationState } from '@azure/core-lro';
import { TokenCredential } from '@azure/core-http';

// @public
export type ActionType = 'EmailContacts' | 'AutoRenew';
export type ActionType = "EmailContacts" | "AutoRenew";

// @public
export interface AdministratorContact {
Expand Down Expand Up @@ -246,7 +246,7 @@ export interface DeletedCertificate extends KeyVaultCertificateWithPolicy {
export type DeleteIssuerOptions = coreHttp.OperationOptions;

// @public
export type DeletionRecoveryLevel = 'Purgeable' | 'Recoverable+Purgeable' | 'Recoverable' | 'Recoverable+ProtectedSubscription' | 'CustomizedRecoverable+Purgeable' | 'CustomizedRecoverable' | 'CustomizedRecoverable+ProtectedSubscription';
export type DeletionRecoveryLevel = "Purgeable" | "Recoverable+Purgeable" | "Recoverable" | "Recoverable+ProtectedSubscription" | "CustomizedRecoverable+Purgeable" | "CustomizedRecoverable" | "CustomizedRecoverable+ProtectedSubscription";

// @public
export interface ErrorModel {
Expand Down Expand Up @@ -315,7 +315,7 @@ export interface IssuerProperties {
}

// @public
export type KeyUsageType = 'digitalSignature' | 'nonRepudiation' | 'keyEncipherment' | 'dataEncipherment' | 'keyAgreement' | 'keyCertSign' | 'cRLSign' | 'encipherOnly' | 'decipherOnly';
export type KeyUsageType = "digitalSignature" | "nonRepudiation" | "keyEncipherment" | "dataEncipherment" | "keyAgreement" | "keyCertSign" | "cRLSign" | "encipherOnly" | "decipherOnly";

// @public
export interface KeyVaultCertificate {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

import * as coreHttp from "@azure/core-http";
import { DeletionRecoveryLevel, KeyUsageType } from "./core/models";
import { DeletionRecoveryLevel, KeyUsageType } from "./generated/models";

/**
* Defines values for CertificateKeyType.
Expand Down
1,709 changes: 0 additions & 1,709 deletions sdk/keyvault/keyvault-certificates/src/core/keyVaultClient.ts

This file was deleted.

105 changes: 0 additions & 105 deletions sdk/keyvault/keyvault-certificates/src/core/models/parameters.ts

This file was deleted.

Loading