update import location and copyright header

This commit is contained in:
Jacob Zhou 2021-05-25 22:22:19 -07:00
Родитель 5df48f846b
Коммит eb76686fec
182 изменённых файлов: 620 добавлений и 80 удалений

Просмотреть файл

@ -6,8 +6,8 @@ This is a Golang SDK for [DataBricks REST API 2.0](https://docs.databricks.com/a
```go
import (
databricks "github.com/polar-rams/databricks-sdk-golang"
dbAzure "github.com/polar-rams/databricks-sdk-golang/azure"
databricks "github.com/Azure/databricks-sdk-golang"
dbAzure "github.com/Azure/databricks-sdk-golang/azure"
)
opt := databricks.NewDBClientOption("", "", os.Getenv("DATABRICKS_HOST"), os.Getenv("DATABRICKS_TOKEN"))

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package azure
import databricks "github.com/polar-rams/databricks-sdk-golang"
import databricks "github.com/Azure/databricks-sdk-golang"
// DBClient is the client for Azure implements DBClient
type DBClient struct {

Просмотреть файл

@ -1,10 +1,13 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package azure
import (
"encoding/json"
"net/http"
"github.com/polar-rams/databricks-sdk-golang/azure/clusters/httpmodels"
"github.com/Azure/databricks-sdk-golang/azure/clusters/httpmodels"
)
// ClustersAPI exposes the Clusters API

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type CreateReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type DeleteReq struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type EditReq struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type EventsReq struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type GetReq struct {

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
import "github.com/Azure/databricks-sdk-golang/azure/clusters/models"
type ListResp struct {
Clusters []models.ClusterInfo

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type ListNodeTypesResp struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type PermanentDeleteReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type PinReq struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type ResizeReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type RestartReq struct {

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
import "github.com/Azure/databricks-sdk-golang/azure/clusters/models"
type RuntimeVersionsResp struct {
Versions []models.SparkVersion `json:"versions,omitempty" url:"versions,omitempty"`

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type StartReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type UnpinReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type AutoScale struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type AzureAttributes struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type AzureAvailability string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterAttributes struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterCloudProviderNodeInfo struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterCloudProviderNodeStatus string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterEvent struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterEventType string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterInfo struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterLogConf struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterSize struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterSource string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterState string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterTag struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type DbfsStorageInfo struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type DockerBasicAuth struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type DockerImage struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type EventDetails struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type FileStorageInfo struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type InitScriptInfo struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ListOrder string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type LogSyncStatus struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type NodeType struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ParameterPair struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type SparkConfPair struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type SparkNode struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type SparkVersion struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type TerminationCode string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type TerminationParameter string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type TerminationReason struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type TerminationType string

Просмотреть файл

@ -1,10 +1,13 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package azure
import (
"encoding/json"
"net/http"
"github.com/polar-rams/databricks-sdk-golang/azure/dbfs/httpmodels"
"github.com/Azure/databricks-sdk-golang/azure/dbfs/httpmodels"
)
// DbfsAPI exposes the DBFS API

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type AddBlockReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type CloseReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type CreateReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type DeleteReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type GetStatusReq struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/dbfs/models"
"github.com/Azure/databricks-sdk-golang/azure/dbfs/models"
)
type ListReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type MkdirsReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type MoveReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type PutReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type ReadReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type FileInfo struct {

Просмотреть файл

@ -1,10 +1,13 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package azure
import (
"encoding/json"
"net/http"
"github.com/polar-rams/databricks-sdk-golang/azure/groups/httpmodels"
"github.com/Azure/databricks-sdk-golang/azure/groups/httpmodels"
)
// GroupsAPI exposes the Groups API

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type AddMemberReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type CreateReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type DeleteReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type ListResp struct {

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/groups/models"
import "github.com/Azure/databricks-sdk-golang/azure/groups/models"
type ListMembersReq struct {
GroupName string `json:"group_name,omitempty" url:"group_name,omitempty"`

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type ListParentsReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type RemoveMemberReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type PrincipalName struct {

Просмотреть файл

@ -1,10 +1,13 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package azure
import (
"encoding/json"
"net/http"
"github.com/polar-rams/databricks-sdk-golang/azure/instance_pools/httpmodels"
"github.com/Azure/databricks-sdk-golang/azure/instance_pools/httpmodels"
)
// InstancePoolsAPI exposes the InstancePools API

Просмотреть файл

@ -1,8 +1,11 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
clustersModels "github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/polar-rams/databricks-sdk-golang/azure/instance_pools/models"
clustersModels "github.com/Azure/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/instance_pools/models"
)
//CreateReq is to compose the request for creating an instance pool

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
// DeleteReq is to compose the request to delete an instance pool

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
//EditReq is to compose the request for modifying an instance pool

Просмотреть файл

@ -1,8 +1,11 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
clustersModels "github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
"github.com/polar-rams/databricks-sdk-golang/azure/instance_pools/models"
clustersModels "github.com/Azure/databricks-sdk-golang/azure/clusters/models"
"github.com/Azure/databricks-sdk-golang/azure/instance_pools/models"
)
//GetReq is to compose the request to get an instance pool

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/instance_pools/models"
"github.com/Azure/databricks-sdk-golang/azure/instance_pools/models"
)
//ListResp is to compose the response to list an array of instance pools' stats

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type AzureDiskVolumeType string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type DiskSpec struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type DiskType struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
import (
clusterModels "github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
clusterModels "github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type InstancePoolAndStats struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
import (
clusterModels "github.com/polar-rams/databricks-sdk-golang/azure/clusters/models"
clusterModels "github.com/Azure/databricks-sdk-golang/azure/clusters/models"
)
type InstancePoolAzureAttributes struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type InstancePoolState string

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type InstancePoolStats struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type InstancePoolStatus struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type PendingInstanceError struct {

Просмотреть файл

@ -1,10 +1,13 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package azure
import (
"encoding/json"
"net/http"
"github.com/polar-rams/databricks-sdk-golang/azure/jobs/httpmodels"
"github.com/Azure/databricks-sdk-golang/azure/jobs/httpmodels"
)
// JobsAPI exposes Jobs API endpoints

Просмотреть файл

@ -1,8 +1,11 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
libraryModels "github.com/polar-rams/databricks-sdk-golang/azure/libraries/models"
"github.com/Azure/databricks-sdk-golang/azure/jobs/models"
libraryModels "github.com/Azure/databricks-sdk-golang/azure/libraries/models"
)
type CreateReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type DeleteReq struct {

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
import "github.com/Azure/databricks-sdk-golang/azure/jobs/models"
type GetReq struct {
JobID int64 `json:"job_id,omitempty" url:"job_id,omitempty"`

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
"github.com/Azure/databricks-sdk-golang/azure/jobs/models"
)
type ListResp struct {

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
import "github.com/Azure/databricks-sdk-golang/azure/jobs/models"
type ResetReq struct {
JobID int64 `json:"job_id,omitempty" url:"job_id,omitempty"`

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type RunNowReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type RunsCancelReq struct {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
type RunsDeleteReq struct {

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
import "github.com/Azure/databricks-sdk-golang/azure/jobs/models"
type RunsExportReq struct {
RunID int64 `json:"run_id,omitempty" url:"run_id,omitempty"`

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
import "github.com/Azure/databricks-sdk-golang/azure/jobs/models"
type RunsGetReq struct {
RunID int64 `json:"run_id,omitempty" url:"run_id,omitempty"`

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
"github.com/Azure/databricks-sdk-golang/azure/jobs/models"
)
type RunsGetOutputReq struct {

Просмотреть файл

@ -1,7 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
"github.com/Azure/databricks-sdk-golang/azure/jobs/models"
)
type RunsListReq struct {

Просмотреть файл

@ -1,8 +1,11 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import (
"github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
libraryModels "github.com/polar-rams/databricks-sdk-golang/azure/libraries/models"
"github.com/Azure/databricks-sdk-golang/azure/jobs/models"
libraryModels "github.com/Azure/databricks-sdk-golang/azure/libraries/models"
)
type RunsSubmitReq struct {

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package httpmodels
import "github.com/polar-rams/databricks-sdk-golang/azure/jobs/models"
import "github.com/Azure/databricks-sdk-golang/azure/jobs/models"
type UpdateReq struct {
JobID int64 `json:"job_id,omitempty" url:"job_id,omitempty"`

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package models
type ClusterInstance struct {

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше