-
Notifications
You must be signed in to change notification settings - Fork 849
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Generated from 4bc9f1d4e2d95c6b43e61e59740aae7a79241e3d (#6774) add the required property on inputschemamapping * 2020-04-preview (#6885) * Generated from b35bc2bb9272e1d61d5024394f582b01a56cbf03 (#6894) added missing swagger-to-sdk * Generated from 30ec96c398eaa29469e127fdd84e9484a6d76d4c (#6812) Add a new api-version for storage sync * Generated from 989084ff956004c5d49b097eee9fd58d3feaa469 (#6716) Add go sdk for attestation * Re-generating profiles (#6895) * v38.2.0 Co-authored-by: openapi-sdkautomation[bot] <37845953+openapi-sdkautomation[bot]@users.noreply.github.com> Co-authored-by: Arcturus <ufo54153@gmail.com>
- Loading branch information
1 parent
dfc6a17
commit 68963ee
Showing
45 changed files
with
16,667 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
profiles/preview/preview/attestation/mgmt/attestation/attestationapi/models.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// +build go1.9 | ||
|
||
// Copyright 2020 Microsoft Corporation | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// This code was auto-generated by: | ||
// github.com/Azure/azure-sdk-for-go/tools/profileBuilder | ||
|
||
package attestationapi | ||
|
||
import original "github.com/Azure/azure-sdk-for-go/services/preview/attestation/mgmt/2018-09-01-preview/attestation/attestationapi" | ||
|
||
type OperationsClientAPI = original.OperationsClientAPI | ||
type ProvidersClientAPI = original.ProvidersClientAPI |
81 changes: 81 additions & 0 deletions
81
profiles/preview/preview/attestation/mgmt/attestation/models.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// +build go1.9 | ||
|
||
// Copyright 2020 Microsoft Corporation | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// This code was auto-generated by: | ||
// github.com/Azure/azure-sdk-for-go/tools/profileBuilder | ||
|
||
package attestation | ||
|
||
import original "github.com/Azure/azure-sdk-for-go/services/preview/attestation/mgmt/2018-09-01-preview/attestation" | ||
|
||
const ( | ||
DefaultBaseURI = original.DefaultBaseURI | ||
) | ||
|
||
type ServiceStatus = original.ServiceStatus | ||
|
||
const ( | ||
Error ServiceStatus = original.Error | ||
NotReady ServiceStatus = original.NotReady | ||
Ready ServiceStatus = original.Ready | ||
) | ||
|
||
type AzureEntityResource = original.AzureEntityResource | ||
type BaseClient = original.BaseClient | ||
type CloudError = original.CloudError | ||
type CloudErrorBody = original.CloudErrorBody | ||
type JSONWebKey = original.JSONWebKey | ||
type JSONWebKeySet = original.JSONWebKeySet | ||
type OperationList = original.OperationList | ||
type OperationsClient = original.OperationsClient | ||
type OperationsDefinition = original.OperationsDefinition | ||
type OperationsDisplayDefinition = original.OperationsDisplayDefinition | ||
type Provider = original.Provider | ||
type ProviderListResult = original.ProviderListResult | ||
type ProvidersClient = original.ProvidersClient | ||
type ProxyResource = original.ProxyResource | ||
type Resource = original.Resource | ||
type ServiceCreationParams = original.ServiceCreationParams | ||
type StatusResult = original.StatusResult | ||
type TrackedResource = original.TrackedResource | ||
|
||
func New(subscriptionID string) BaseClient { | ||
return original.New(subscriptionID) | ||
} | ||
func NewOperationsClient(subscriptionID string) OperationsClient { | ||
return original.NewOperationsClient(subscriptionID) | ||
} | ||
func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient { | ||
return original.NewOperationsClientWithBaseURI(baseURI, subscriptionID) | ||
} | ||
func NewProvidersClient(subscriptionID string) ProvidersClient { | ||
return original.NewProvidersClient(subscriptionID) | ||
} | ||
func NewProvidersClientWithBaseURI(baseURI string, subscriptionID string) ProvidersClient { | ||
return original.NewProvidersClientWithBaseURI(baseURI, subscriptionID) | ||
} | ||
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient { | ||
return original.NewWithBaseURI(baseURI, subscriptionID) | ||
} | ||
func PossibleServiceStatusValues() []ServiceStatus { | ||
return original.PossibleServiceStatusValues() | ||
} | ||
func UserAgent() string { | ||
return original.UserAgent() + " profiles/preview" | ||
} | ||
func Version() string { | ||
return original.Version() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.