2019-06-24 04:39:22 +00:00
|
|
|
// Copyright 2016-2018, Pulumi 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.
|
|
|
|
|
|
|
|
package backend
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-03-24 20:30:36 +00:00
|
|
|
"encoding/json"
|
2019-06-24 04:39:22 +00:00
|
|
|
|
2021-03-17 13:20:05 +00:00
|
|
|
"github.com/pulumi/pulumi/sdk/v3/go/common/resource/plugin"
|
|
|
|
"github.com/pulumi/pulumi/sdk/v3/go/common/util/result"
|
|
|
|
"github.com/pulumi/pulumi/sdk/v3/go/common/workspace"
|
2019-06-24 04:39:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// PublishOperation publishes a PolicyPack to the backend.
|
|
|
|
type PublishOperation struct {
|
2019-10-09 22:33:35 +00:00
|
|
|
Root string
|
|
|
|
PlugCtx *plugin.Context
|
|
|
|
PolicyPack *workspace.PolicyPackProject
|
|
|
|
Scopes CancellationScopeSource
|
2019-06-24 04:39:22 +00:00
|
|
|
}
|
|
|
|
|
2020-01-03 22:16:39 +00:00
|
|
|
// PolicyPackOperation is used to make various operations against a Policy Pack.
|
|
|
|
type PolicyPackOperation struct {
|
2020-01-22 23:17:00 +00:00
|
|
|
// If nil, the latest version is assumed.
|
2020-02-25 01:11:56 +00:00
|
|
|
VersionTag *string
|
|
|
|
Scopes CancellationScopeSource
|
2020-03-24 20:30:36 +00:00
|
|
|
Config map[string]*json.RawMessage
|
2019-06-28 17:07:49 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 18:07:59 +00:00
|
|
|
// PolicyPack is used to manage policy against a pluggable backend.
|
2019-06-24 04:39:22 +00:00
|
|
|
type PolicyPack interface {
|
|
|
|
// Ref returns a reference to this PolicyPack.
|
|
|
|
Ref() PolicyPackReference
|
|
|
|
// Backend returns the backend this PolicyPack is managed by.
|
|
|
|
Backend() Backend
|
|
|
|
// Publish the PolicyPack to the service.
|
|
|
|
Publish(ctx context.Context, op PublishOperation) result.Result
|
2020-01-22 23:17:00 +00:00
|
|
|
// Enable the PolicyPack to a Policy Group in an organization. If Policy Group is
|
2020-01-03 22:16:39 +00:00
|
|
|
// empty, it enables it for the default Policy Group.
|
2020-01-22 23:17:00 +00:00
|
|
|
Enable(ctx context.Context, policyGroup string, op PolicyPackOperation) error
|
2020-01-03 22:16:39 +00:00
|
|
|
|
|
|
|
// Disable the PolicyPack for a Policy Group in an organization. If Policy Group is
|
|
|
|
// empty, it disables it for the default Policy Group.
|
|
|
|
Disable(ctx context.Context, policyGroup string, op PolicyPackOperation) error
|
|
|
|
|
2020-03-27 16:54:26 +00:00
|
|
|
// Validate the PolicyPack configuration against configuration schema.
|
|
|
|
Validate(ctx context.Context, op PolicyPackOperation) error
|
|
|
|
|
2020-01-03 22:16:39 +00:00
|
|
|
// Remove the PolicyPack from an organization. The Policy Pack must be removed from
|
|
|
|
// all Policy Groups before it can be removed.
|
|
|
|
Remove(ctx context.Context, op PolicyPackOperation) error
|
2019-06-24 04:39:22 +00:00
|
|
|
}
|