Skip to content

Commit

Permalink
CodeGen from PR 22567 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 948c730562c630a68f7633327a79afb94b07bcac into 47d1d82108a0db0395ed4eca106622becee7fbb4
  • Loading branch information
SDKAuto committed Feb 13, 2023
1 parent 42d359f commit 3ed2557
Show file tree
Hide file tree
Showing 17 changed files with 599 additions and 69 deletions.
14 changes: 7 additions & 7 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
# Release History

## 6.0.0 (2023-02-13)

**Features**

## 5.1.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

- Added Interface AzureBlobDefinition
- Added Interface AzureBlobPatchDefinition
- Added Interface ManagedIdentityDefinition
- Added Interface ManagedIdentityPatchDefinition
- Added Interface Plan
- Added Interface ServicePrincipalDefinition
- Added Interface ServicePrincipalPatchDefinition
- Interface Extension has a new optional parameter currentVersion
- Interface Extension has a new optional parameter isSystemExtension
- Interface Extension has a new optional parameter plan
- Interface FluxConfiguration has a new optional parameter azureBlob
- Interface FluxConfigurationPatch has a new optional parameter azureBlob
- Enum KnownSourceKindType has a new value AzureBlob

**Breaking Changes**

- Interface Extension no longer has parameter installedVersion


## 5.1.0 (2022-11-28)

**Features**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2022 Microsoft
Copyright (c) 2023 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "1fefe3f5cee88319b17c08a2dbf95e1e983a9f8c",
"commit": "f4175eea8958c500483d499acccfb90b12dfebf8",
"readme": "specification/kubernetesconfiguration/resource-manager/readme.md",
"autorest_command": "autorest --version=3.8.4 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\Git\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\kubernetesconfiguration\\resource-manager\\readme.md --use=@autorest/typescript@6.0.0-rc.3.20221108.1 --generate-sample=true",
"autorest_command": "autorest --version=3.9.3 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-js ../azure-rest-api-specs/specification/kubernetesconfiguration/resource-manager/readme.md --use=@autorest/typescript@6.0.0-rc.5",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/js-sdk-release-tools@2.4.2",
"use": "@autorest/typescript@6.0.0-rc.3.20221108.1"
"release_tool": "@azure-tools/js-sdk-release-tools@2.6.2",
"use": "@autorest/typescript@6.0.0-rc.5"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sdk-type": "mgmt",
"author": "Microsoft Corporation",
"description": "A generated SDK for SourceControlConfigurationClient.",
"version": "5.1.1",
"version": "6.0.0",
"engines": {
"node": ">=14.0.0"
},
Expand All @@ -29,9 +29,9 @@
"types": "./types/arm-kubernetesconfiguration.d.ts",
"devDependencies": {
"@microsoft/api-extractor": "^7.31.1",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-multi-entry": "^6.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"mkdirp": "^1.0.4",
"rollup": "^2.66.1",
Expand Down Expand Up @@ -110,13 +110,5 @@
}
]
},
"autoPublish": true,
"//sampleConfiguration": {
"productName": "",
"productSlugs": [
"azure"
],
"disableDocsMs": true,
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-kubernetesconfiguration?view=azure-node-preview"
}
}
"autoPublish": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,32 @@ import { PollOperationState } from '@azure/core-lro';
// @public
export type AKSIdentityType = "SystemAssigned" | "UserAssigned";

// @public
export interface AzureBlobDefinition {
accountKey?: string;
containerName?: string;
localAuthRef?: string;
managedIdentity?: ManagedIdentityDefinition;
sasToken?: string;
servicePrincipal?: ServicePrincipalDefinition;
syncIntervalInSeconds?: number;
timeoutInSeconds?: number;
url?: string;
}

// @public
export interface AzureBlobPatchDefinition {
accountKey?: string;
containerName?: string;
localAuthRef?: string;
managedIdentity?: ManagedIdentityPatchDefinition;
sasToken?: string;
servicePrincipal?: ServicePrincipalPatchDefinition;
syncIntervalInSeconds?: number;
timeoutInSeconds?: number;
url?: string;
}

// @public
export interface BucketDefinition {
accessKey?: string;
Expand Down Expand Up @@ -79,14 +105,16 @@ export interface Extension extends ProxyResource {
configurationSettings?: {
[propertyName: string]: string;
};
readonly currentVersion?: string;
readonly customLocationSettings?: {
[propertyName: string]: string;
};
readonly errorInfo?: ErrorDetail;
extensionType?: string;
identity?: Identity;
readonly installedVersion?: string;
readonly isSystemExtension?: boolean;
readonly packageUri?: string;
plan?: Plan;
readonly provisioningState?: ProvisioningState;
releaseTrain?: string;
scope?: Scope;
Expand Down Expand Up @@ -192,6 +220,7 @@ export type FluxConfigOperationStatusGetResponse = OperationStatusResult;

// @public
export interface FluxConfiguration extends ProxyResource {
azureBlob?: AzureBlobDefinition;
bucket?: BucketDefinition;
readonly complianceState?: FluxComplianceState;
configurationProtectedSettings?: {
Expand All @@ -217,6 +246,7 @@ export interface FluxConfiguration extends ProxyResource {

// @public
export interface FluxConfigurationPatch {
azureBlob?: AzureBlobPatchDefinition;
bucket?: BucketPatchDefinition;
configurationProtectedSettings?: {
[propertyName: string]: string;
Expand Down Expand Up @@ -427,6 +457,7 @@ export enum KnownScopeType {

// @public
export enum KnownSourceKindType {
AzureBlob = "AzureBlob",
Bucket = "Bucket",
GitRepository = "GitRepository"
}
Expand Down Expand Up @@ -460,6 +491,16 @@ export type KustomizationValidationType = string;
// @public
export type LevelType = string;

// @public
export interface ManagedIdentityDefinition {
clientId?: string;
}

// @public
export interface ManagedIdentityPatchDefinition {
clientId?: string;
}

// @public
export type MessageLevelType = string;

Expand Down Expand Up @@ -571,6 +612,15 @@ export interface PatchExtension {
version?: string;
}

// @public
export interface Plan {
name: string;
product: string;
promotionCode?: string;
publisher: string;
version?: string;
}

// @public
export type ProvisioningState = string;

Expand Down Expand Up @@ -637,6 +687,26 @@ export interface ScopeNamespace {
// @public
export type ScopeType = string;

// @public
export interface ServicePrincipalDefinition {
clientCertificate?: string;
clientCertificatePassword?: string;
clientCertificateSendChain?: boolean;
clientId?: string;
clientSecret?: string;
tenantId?: string;
}

// @public
export interface ServicePrincipalPatchDefinition {
clientCertificate?: string;
clientCertificatePassword?: string;
clientCertificateSendChain?: boolean;
clientId?: string;
clientSecret?: string;
tenantId?: string;
}

// @public
export interface SourceControlConfiguration extends ProxyResource {
readonly complianceStatus?: ComplianceStatus;
Expand Down
Loading

0 comments on commit 3ed2557

Please sign in to comment.