mirror of https://github.com/pulumi/pulumi.git
951 lines
36 KiB
Go
951 lines
36 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: provider.proto
|
|
// DO NOT EDIT!
|
|
|
|
package pulumirpc
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import google_protobuf "github.com/golang/protobuf/ptypes/empty"
|
|
import google_protobuf1 "github.com/golang/protobuf/ptypes/struct"
|
|
|
|
import (
|
|
context "golang.org/x/net/context"
|
|
grpc "google.golang.org/grpc"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
type DiffResponse_DiffChanges int32
|
|
|
|
const (
|
|
DiffResponse_DIFF_UNKNOWN DiffResponse_DiffChanges = 0
|
|
DiffResponse_DIFF_NONE DiffResponse_DiffChanges = 1
|
|
DiffResponse_DIFF_SOME DiffResponse_DiffChanges = 2
|
|
)
|
|
|
|
var DiffResponse_DiffChanges_name = map[int32]string{
|
|
0: "DIFF_UNKNOWN",
|
|
1: "DIFF_NONE",
|
|
2: "DIFF_SOME",
|
|
}
|
|
var DiffResponse_DiffChanges_value = map[string]int32{
|
|
"DIFF_UNKNOWN": 0,
|
|
"DIFF_NONE": 1,
|
|
"DIFF_SOME": 2,
|
|
}
|
|
|
|
func (x DiffResponse_DiffChanges) String() string {
|
|
return proto.EnumName(DiffResponse_DiffChanges_name, int32(x))
|
|
}
|
|
func (DiffResponse_DiffChanges) EnumDescriptor() ([]byte, []int) { return fileDescriptor5, []int{8, 0} }
|
|
|
|
type ConfigureRequest struct {
|
|
Variables map[string]string `protobuf:"bytes,1,rep,name=variables" json:"variables,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
}
|
|
|
|
func (m *ConfigureRequest) Reset() { *m = ConfigureRequest{} }
|
|
func (m *ConfigureRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ConfigureRequest) ProtoMessage() {}
|
|
func (*ConfigureRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{0} }
|
|
|
|
func (m *ConfigureRequest) GetVariables() map[string]string {
|
|
if m != nil {
|
|
return m.Variables
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ConfigureErrorMissingKeys is sent as a Detail on an error returned from `ResourceProvider.Configure`.
|
|
type ConfigureErrorMissingKeys struct {
|
|
MissingKeys []*ConfigureErrorMissingKeys_MissingKey `protobuf:"bytes,1,rep,name=missingKeys" json:"missingKeys,omitempty"`
|
|
}
|
|
|
|
func (m *ConfigureErrorMissingKeys) Reset() { *m = ConfigureErrorMissingKeys{} }
|
|
func (m *ConfigureErrorMissingKeys) String() string { return proto.CompactTextString(m) }
|
|
func (*ConfigureErrorMissingKeys) ProtoMessage() {}
|
|
func (*ConfigureErrorMissingKeys) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{1} }
|
|
|
|
func (m *ConfigureErrorMissingKeys) GetMissingKeys() []*ConfigureErrorMissingKeys_MissingKey {
|
|
if m != nil {
|
|
return m.MissingKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ConfigureErrorMissingKeys_MissingKey struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
Description string `protobuf:"bytes,2,opt,name=description" json:"description,omitempty"`
|
|
}
|
|
|
|
func (m *ConfigureErrorMissingKeys_MissingKey) Reset() { *m = ConfigureErrorMissingKeys_MissingKey{} }
|
|
func (m *ConfigureErrorMissingKeys_MissingKey) String() string { return proto.CompactTextString(m) }
|
|
func (*ConfigureErrorMissingKeys_MissingKey) ProtoMessage() {}
|
|
func (*ConfigureErrorMissingKeys_MissingKey) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor5, []int{1, 0}
|
|
}
|
|
|
|
func (m *ConfigureErrorMissingKeys_MissingKey) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ConfigureErrorMissingKeys_MissingKey) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type InvokeRequest struct {
|
|
Tok string `protobuf:"bytes,1,opt,name=tok" json:"tok,omitempty"`
|
|
Args *google_protobuf1.Struct `protobuf:"bytes,2,opt,name=args" json:"args,omitempty"`
|
|
}
|
|
|
|
func (m *InvokeRequest) Reset() { *m = InvokeRequest{} }
|
|
func (m *InvokeRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*InvokeRequest) ProtoMessage() {}
|
|
func (*InvokeRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{2} }
|
|
|
|
func (m *InvokeRequest) GetTok() string {
|
|
if m != nil {
|
|
return m.Tok
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *InvokeRequest) GetArgs() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Args
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type InvokeResponse struct {
|
|
Return *google_protobuf1.Struct `protobuf:"bytes,1,opt,name=return" json:"return,omitempty"`
|
|
Failures []*CheckFailure `protobuf:"bytes,2,rep,name=failures" json:"failures,omitempty"`
|
|
}
|
|
|
|
func (m *InvokeResponse) Reset() { *m = InvokeResponse{} }
|
|
func (m *InvokeResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*InvokeResponse) ProtoMessage() {}
|
|
func (*InvokeResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{3} }
|
|
|
|
func (m *InvokeResponse) GetReturn() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Return
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *InvokeResponse) GetFailures() []*CheckFailure {
|
|
if m != nil {
|
|
return m.Failures
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CheckRequest struct {
|
|
Urn string `protobuf:"bytes,1,opt,name=urn" json:"urn,omitempty"`
|
|
Olds *google_protobuf1.Struct `protobuf:"bytes,2,opt,name=olds" json:"olds,omitempty"`
|
|
News *google_protobuf1.Struct `protobuf:"bytes,3,opt,name=news" json:"news,omitempty"`
|
|
}
|
|
|
|
func (m *CheckRequest) Reset() { *m = CheckRequest{} }
|
|
func (m *CheckRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CheckRequest) ProtoMessage() {}
|
|
func (*CheckRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{4} }
|
|
|
|
func (m *CheckRequest) GetUrn() string {
|
|
if m != nil {
|
|
return m.Urn
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CheckRequest) GetOlds() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Olds
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CheckRequest) GetNews() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.News
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CheckResponse struct {
|
|
Inputs *google_protobuf1.Struct `protobuf:"bytes,1,opt,name=inputs" json:"inputs,omitempty"`
|
|
Failures []*CheckFailure `protobuf:"bytes,2,rep,name=failures" json:"failures,omitempty"`
|
|
}
|
|
|
|
func (m *CheckResponse) Reset() { *m = CheckResponse{} }
|
|
func (m *CheckResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*CheckResponse) ProtoMessage() {}
|
|
func (*CheckResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{5} }
|
|
|
|
func (m *CheckResponse) GetInputs() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Inputs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CheckResponse) GetFailures() []*CheckFailure {
|
|
if m != nil {
|
|
return m.Failures
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CheckFailure struct {
|
|
Property string `protobuf:"bytes,1,opt,name=property" json:"property,omitempty"`
|
|
Reason string `protobuf:"bytes,2,opt,name=reason" json:"reason,omitempty"`
|
|
}
|
|
|
|
func (m *CheckFailure) Reset() { *m = CheckFailure{} }
|
|
func (m *CheckFailure) String() string { return proto.CompactTextString(m) }
|
|
func (*CheckFailure) ProtoMessage() {}
|
|
func (*CheckFailure) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{6} }
|
|
|
|
func (m *CheckFailure) GetProperty() string {
|
|
if m != nil {
|
|
return m.Property
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CheckFailure) GetReason() string {
|
|
if m != nil {
|
|
return m.Reason
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type DiffRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Urn string `protobuf:"bytes,2,opt,name=urn" json:"urn,omitempty"`
|
|
Olds *google_protobuf1.Struct `protobuf:"bytes,3,opt,name=olds" json:"olds,omitempty"`
|
|
News *google_protobuf1.Struct `protobuf:"bytes,4,opt,name=news" json:"news,omitempty"`
|
|
}
|
|
|
|
func (m *DiffRequest) Reset() { *m = DiffRequest{} }
|
|
func (m *DiffRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DiffRequest) ProtoMessage() {}
|
|
func (*DiffRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{7} }
|
|
|
|
func (m *DiffRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DiffRequest) GetUrn() string {
|
|
if m != nil {
|
|
return m.Urn
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DiffRequest) GetOlds() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Olds
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DiffRequest) GetNews() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.News
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DiffResponse struct {
|
|
Replaces []string `protobuf:"bytes,1,rep,name=replaces" json:"replaces,omitempty"`
|
|
Stables []string `protobuf:"bytes,2,rep,name=stables" json:"stables,omitempty"`
|
|
DeleteBeforeReplace bool `protobuf:"varint,3,opt,name=deleteBeforeReplace" json:"deleteBeforeReplace,omitempty"`
|
|
Changes DiffResponse_DiffChanges `protobuf:"varint,4,opt,name=changes,enum=pulumirpc.DiffResponse_DiffChanges" json:"changes,omitempty"`
|
|
}
|
|
|
|
func (m *DiffResponse) Reset() { *m = DiffResponse{} }
|
|
func (m *DiffResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DiffResponse) ProtoMessage() {}
|
|
func (*DiffResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{8} }
|
|
|
|
func (m *DiffResponse) GetReplaces() []string {
|
|
if m != nil {
|
|
return m.Replaces
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DiffResponse) GetStables() []string {
|
|
if m != nil {
|
|
return m.Stables
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DiffResponse) GetDeleteBeforeReplace() bool {
|
|
if m != nil {
|
|
return m.DeleteBeforeReplace
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *DiffResponse) GetChanges() DiffResponse_DiffChanges {
|
|
if m != nil {
|
|
return m.Changes
|
|
}
|
|
return DiffResponse_DIFF_UNKNOWN
|
|
}
|
|
|
|
type CreateRequest struct {
|
|
Urn string `protobuf:"bytes,1,opt,name=urn" json:"urn,omitempty"`
|
|
Properties *google_protobuf1.Struct `protobuf:"bytes,2,opt,name=properties" json:"properties,omitempty"`
|
|
}
|
|
|
|
func (m *CreateRequest) Reset() { *m = CreateRequest{} }
|
|
func (m *CreateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateRequest) ProtoMessage() {}
|
|
func (*CreateRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{9} }
|
|
|
|
func (m *CreateRequest) GetUrn() string {
|
|
if m != nil {
|
|
return m.Urn
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateRequest) GetProperties() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Properties
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CreateResponse struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Properties *google_protobuf1.Struct `protobuf:"bytes,2,opt,name=properties" json:"properties,omitempty"`
|
|
}
|
|
|
|
func (m *CreateResponse) Reset() { *m = CreateResponse{} }
|
|
func (m *CreateResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateResponse) ProtoMessage() {}
|
|
func (*CreateResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{10} }
|
|
|
|
func (m *CreateResponse) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateResponse) GetProperties() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Properties
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ReadRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Urn string `protobuf:"bytes,2,opt,name=urn" json:"urn,omitempty"`
|
|
Properties *google_protobuf1.Struct `protobuf:"bytes,3,opt,name=properties" json:"properties,omitempty"`
|
|
}
|
|
|
|
func (m *ReadRequest) Reset() { *m = ReadRequest{} }
|
|
func (m *ReadRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadRequest) ProtoMessage() {}
|
|
func (*ReadRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{11} }
|
|
|
|
func (m *ReadRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ReadRequest) GetUrn() string {
|
|
if m != nil {
|
|
return m.Urn
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ReadRequest) GetProperties() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Properties
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ReadResponse struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Properties *google_protobuf1.Struct `protobuf:"bytes,2,opt,name=properties" json:"properties,omitempty"`
|
|
}
|
|
|
|
func (m *ReadResponse) Reset() { *m = ReadResponse{} }
|
|
func (m *ReadResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadResponse) ProtoMessage() {}
|
|
func (*ReadResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{12} }
|
|
|
|
func (m *ReadResponse) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ReadResponse) GetProperties() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Properties
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UpdateRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Urn string `protobuf:"bytes,2,opt,name=urn" json:"urn,omitempty"`
|
|
Olds *google_protobuf1.Struct `protobuf:"bytes,3,opt,name=olds" json:"olds,omitempty"`
|
|
News *google_protobuf1.Struct `protobuf:"bytes,4,opt,name=news" json:"news,omitempty"`
|
|
}
|
|
|
|
func (m *UpdateRequest) Reset() { *m = UpdateRequest{} }
|
|
func (m *UpdateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateRequest) ProtoMessage() {}
|
|
func (*UpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{13} }
|
|
|
|
func (m *UpdateRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateRequest) GetUrn() string {
|
|
if m != nil {
|
|
return m.Urn
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateRequest) GetOlds() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Olds
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdateRequest) GetNews() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.News
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UpdateResponse struct {
|
|
Properties *google_protobuf1.Struct `protobuf:"bytes,1,opt,name=properties" json:"properties,omitempty"`
|
|
}
|
|
|
|
func (m *UpdateResponse) Reset() { *m = UpdateResponse{} }
|
|
func (m *UpdateResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateResponse) ProtoMessage() {}
|
|
func (*UpdateResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{14} }
|
|
|
|
func (m *UpdateResponse) GetProperties() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Properties
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DeleteRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Urn string `protobuf:"bytes,2,opt,name=urn" json:"urn,omitempty"`
|
|
Properties *google_protobuf1.Struct `protobuf:"bytes,3,opt,name=properties" json:"properties,omitempty"`
|
|
}
|
|
|
|
func (m *DeleteRequest) Reset() { *m = DeleteRequest{} }
|
|
func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteRequest) ProtoMessage() {}
|
|
func (*DeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{15} }
|
|
|
|
func (m *DeleteRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeleteRequest) GetUrn() string {
|
|
if m != nil {
|
|
return m.Urn
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeleteRequest) GetProperties() *google_protobuf1.Struct {
|
|
if m != nil {
|
|
return m.Properties
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*ConfigureRequest)(nil), "pulumirpc.ConfigureRequest")
|
|
proto.RegisterType((*ConfigureErrorMissingKeys)(nil), "pulumirpc.ConfigureErrorMissingKeys")
|
|
proto.RegisterType((*ConfigureErrorMissingKeys_MissingKey)(nil), "pulumirpc.ConfigureErrorMissingKeys.MissingKey")
|
|
proto.RegisterType((*InvokeRequest)(nil), "pulumirpc.InvokeRequest")
|
|
proto.RegisterType((*InvokeResponse)(nil), "pulumirpc.InvokeResponse")
|
|
proto.RegisterType((*CheckRequest)(nil), "pulumirpc.CheckRequest")
|
|
proto.RegisterType((*CheckResponse)(nil), "pulumirpc.CheckResponse")
|
|
proto.RegisterType((*CheckFailure)(nil), "pulumirpc.CheckFailure")
|
|
proto.RegisterType((*DiffRequest)(nil), "pulumirpc.DiffRequest")
|
|
proto.RegisterType((*DiffResponse)(nil), "pulumirpc.DiffResponse")
|
|
proto.RegisterType((*CreateRequest)(nil), "pulumirpc.CreateRequest")
|
|
proto.RegisterType((*CreateResponse)(nil), "pulumirpc.CreateResponse")
|
|
proto.RegisterType((*ReadRequest)(nil), "pulumirpc.ReadRequest")
|
|
proto.RegisterType((*ReadResponse)(nil), "pulumirpc.ReadResponse")
|
|
proto.RegisterType((*UpdateRequest)(nil), "pulumirpc.UpdateRequest")
|
|
proto.RegisterType((*UpdateResponse)(nil), "pulumirpc.UpdateResponse")
|
|
proto.RegisterType((*DeleteRequest)(nil), "pulumirpc.DeleteRequest")
|
|
proto.RegisterEnum("pulumirpc.DiffResponse_DiffChanges", DiffResponse_DiffChanges_name, DiffResponse_DiffChanges_value)
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// Client API for ResourceProvider service
|
|
|
|
type ResourceProviderClient interface {
|
|
// Configure configures the resource provider with "globals" that control its behavior.
|
|
Configure(ctx context.Context, in *ConfigureRequest, opts ...grpc.CallOption) (*google_protobuf.Empty, error)
|
|
// Invoke dynamically executes a built-in function in the provider.
|
|
Invoke(ctx context.Context, in *InvokeRequest, opts ...grpc.CallOption) (*InvokeResponse, error)
|
|
// Check validates that the given property bag is valid for a resource of the given type and returns the inputs
|
|
// that should be passed to successive calls to Diff, Create, or Update for this resource. As a rule, the provider
|
|
// inputs returned by a call to Check should preserve the original representation of the properties as present in
|
|
// the program inputs. Though this rule is not required for correctness, violations thereof can negatively impact
|
|
// the end-user experience, as the provider inputs are using for detecting and rendering diffs.
|
|
Check(ctx context.Context, in *CheckRequest, opts ...grpc.CallOption) (*CheckResponse, error)
|
|
// Diff checks what impacts a hypothetical update will have on the resource's properties.
|
|
Diff(ctx context.Context, in *DiffRequest, opts ...grpc.CallOption) (*DiffResponse, error)
|
|
// Create allocates a new instance of the provided resource and returns its unique ID afterwards. (The input ID
|
|
// must be blank.) If this call fails, the resource must not have been created (i.e., it is "transacational").
|
|
Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error)
|
|
// Read the current live state associated with a resource. Enough state must be include in the inputs to uniquely
|
|
// identify the resource; this is typically just the resource ID, but may also include some properties.
|
|
Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error)
|
|
// Update updates an existing resource with new values.
|
|
Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error)
|
|
// Delete tears down an existing resource with the given ID. If it fails, the resource is assumed to still exist.
|
|
Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*google_protobuf.Empty, error)
|
|
// GetPluginInfo returns generic information about this plugin, like its version.
|
|
GetPluginInfo(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*PluginInfo, error)
|
|
}
|
|
|
|
type resourceProviderClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewResourceProviderClient(cc *grpc.ClientConn) ResourceProviderClient {
|
|
return &resourceProviderClient{cc}
|
|
}
|
|
|
|
func (c *resourceProviderClient) Configure(ctx context.Context, in *ConfigureRequest, opts ...grpc.CallOption) (*google_protobuf.Empty, error) {
|
|
out := new(google_protobuf.Empty)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Configure", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) Invoke(ctx context.Context, in *InvokeRequest, opts ...grpc.CallOption) (*InvokeResponse, error) {
|
|
out := new(InvokeResponse)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Invoke", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) Check(ctx context.Context, in *CheckRequest, opts ...grpc.CallOption) (*CheckResponse, error) {
|
|
out := new(CheckResponse)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Check", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) Diff(ctx context.Context, in *DiffRequest, opts ...grpc.CallOption) (*DiffResponse, error) {
|
|
out := new(DiffResponse)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Diff", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error) {
|
|
out := new(CreateResponse)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Create", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error) {
|
|
out := new(ReadResponse)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Read", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error) {
|
|
out := new(UpdateResponse)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Update", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*google_protobuf.Empty, error) {
|
|
out := new(google_protobuf.Empty)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/Delete", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *resourceProviderClient) GetPluginInfo(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*PluginInfo, error) {
|
|
out := new(PluginInfo)
|
|
err := grpc.Invoke(ctx, "/pulumirpc.ResourceProvider/GetPluginInfo", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for ResourceProvider service
|
|
|
|
type ResourceProviderServer interface {
|
|
// Configure configures the resource provider with "globals" that control its behavior.
|
|
Configure(context.Context, *ConfigureRequest) (*google_protobuf.Empty, error)
|
|
// Invoke dynamically executes a built-in function in the provider.
|
|
Invoke(context.Context, *InvokeRequest) (*InvokeResponse, error)
|
|
// Check validates that the given property bag is valid for a resource of the given type and returns the inputs
|
|
// that should be passed to successive calls to Diff, Create, or Update for this resource. As a rule, the provider
|
|
// inputs returned by a call to Check should preserve the original representation of the properties as present in
|
|
// the program inputs. Though this rule is not required for correctness, violations thereof can negatively impact
|
|
// the end-user experience, as the provider inputs are using for detecting and rendering diffs.
|
|
Check(context.Context, *CheckRequest) (*CheckResponse, error)
|
|
// Diff checks what impacts a hypothetical update will have on the resource's properties.
|
|
Diff(context.Context, *DiffRequest) (*DiffResponse, error)
|
|
// Create allocates a new instance of the provided resource and returns its unique ID afterwards. (The input ID
|
|
// must be blank.) If this call fails, the resource must not have been created (i.e., it is "transacational").
|
|
Create(context.Context, *CreateRequest) (*CreateResponse, error)
|
|
// Read the current live state associated with a resource. Enough state must be include in the inputs to uniquely
|
|
// identify the resource; this is typically just the resource ID, but may also include some properties.
|
|
Read(context.Context, *ReadRequest) (*ReadResponse, error)
|
|
// Update updates an existing resource with new values.
|
|
Update(context.Context, *UpdateRequest) (*UpdateResponse, error)
|
|
// Delete tears down an existing resource with the given ID. If it fails, the resource is assumed to still exist.
|
|
Delete(context.Context, *DeleteRequest) (*google_protobuf.Empty, error)
|
|
// GetPluginInfo returns generic information about this plugin, like its version.
|
|
GetPluginInfo(context.Context, *google_protobuf.Empty) (*PluginInfo, error)
|
|
}
|
|
|
|
func RegisterResourceProviderServer(s *grpc.Server, srv ResourceProviderServer) {
|
|
s.RegisterService(&_ResourceProvider_serviceDesc, srv)
|
|
}
|
|
|
|
func _ResourceProvider_Configure_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ConfigureRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Configure(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Configure",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Configure(ctx, req.(*ConfigureRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_Invoke_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(InvokeRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Invoke(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Invoke",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Invoke(ctx, req.(*InvokeRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_Check_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CheckRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Check(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Check",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Check(ctx, req.(*CheckRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_Diff_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DiffRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Diff(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Diff",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Diff(ctx, req.(*DiffRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CreateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Create(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Create",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Create(ctx, req.(*CreateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_Read_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ReadRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Read(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Read",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Read(ctx, req.(*ReadRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Update(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Update",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Update(ctx, req.(*UpdateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DeleteRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).Delete(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/Delete",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).Delete(ctx, req.(*DeleteRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ResourceProvider_GetPluginInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(google_protobuf.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ResourceProviderServer).GetPluginInfo(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pulumirpc.ResourceProvider/GetPluginInfo",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ResourceProviderServer).GetPluginInfo(ctx, req.(*google_protobuf.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _ResourceProvider_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "pulumirpc.ResourceProvider",
|
|
HandlerType: (*ResourceProviderServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Configure",
|
|
Handler: _ResourceProvider_Configure_Handler,
|
|
},
|
|
{
|
|
MethodName: "Invoke",
|
|
Handler: _ResourceProvider_Invoke_Handler,
|
|
},
|
|
{
|
|
MethodName: "Check",
|
|
Handler: _ResourceProvider_Check_Handler,
|
|
},
|
|
{
|
|
MethodName: "Diff",
|
|
Handler: _ResourceProvider_Diff_Handler,
|
|
},
|
|
{
|
|
MethodName: "Create",
|
|
Handler: _ResourceProvider_Create_Handler,
|
|
},
|
|
{
|
|
MethodName: "Read",
|
|
Handler: _ResourceProvider_Read_Handler,
|
|
},
|
|
{
|
|
MethodName: "Update",
|
|
Handler: _ResourceProvider_Update_Handler,
|
|
},
|
|
{
|
|
MethodName: "Delete",
|
|
Handler: _ResourceProvider_Delete_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetPluginInfo",
|
|
Handler: _ResourceProvider_GetPluginInfo_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "provider.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("provider.proto", fileDescriptor5) }
|
|
|
|
var fileDescriptor5 = []byte{
|
|
// 840 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xc4, 0x56, 0xdd, 0x6e, 0xc3, 0x34,
|
|
0x14, 0x6e, 0xda, 0xae, 0x6b, 0x4f, 0x7f, 0x14, 0x19, 0xd8, 0xba, 0x8c, 0x8b, 0x29, 0xdc, 0x4c,
|
|
0x20, 0xa5, 0xa8, 0xbb, 0xe0, 0x47, 0x9b, 0x40, 0xdd, 0x3a, 0xa8, 0xa6, 0x75, 0x23, 0xd3, 0x98,
|
|
0xe0, 0x06, 0x65, 0x8d, 0xdb, 0x85, 0xa6, 0x71, 0x70, 0x9c, 0xa2, 0xf2, 0x06, 0x88, 0x37, 0xe0,
|
|
0x31, 0x78, 0x0f, 0xde, 0x86, 0x07, 0x40, 0xb1, 0x9d, 0x34, 0x6e, 0xb7, 0xb5, 0x4c, 0x20, 0xee,
|
|
0x72, 0x7c, 0xbe, 0x73, 0xbe, 0xf3, 0x6b, 0x07, 0x5a, 0x21, 0x25, 0x73, 0xcf, 0xc5, 0xd4, 0x0a,
|
|
0x29, 0x61, 0x04, 0xd5, 0xc2, 0xd8, 0x8f, 0x67, 0x1e, 0x0d, 0x47, 0x46, 0x23, 0xf4, 0xe3, 0x89,
|
|
0x17, 0x08, 0x85, 0x71, 0x38, 0x21, 0x64, 0xe2, 0xe3, 0x0e, 0x97, 0x1e, 0xe3, 0x71, 0x07, 0xcf,
|
|
0x42, 0xb6, 0x90, 0xca, 0xf7, 0x57, 0x95, 0x11, 0xa3, 0xf1, 0x88, 0x09, 0xad, 0xf9, 0xbb, 0x06,
|
|
0xfa, 0x39, 0x09, 0xc6, 0xde, 0x24, 0xa6, 0xd8, 0xc6, 0x3f, 0xc5, 0x38, 0x62, 0xe8, 0x6b, 0xa8,
|
|
0xcd, 0x1d, 0xea, 0x39, 0x8f, 0x3e, 0x8e, 0xda, 0xda, 0x51, 0xe9, 0xb8, 0xde, 0xfd, 0xd0, 0xca,
|
|
0xc8, 0xad, 0x55, 0xbc, 0xf5, 0x6d, 0x0a, 0xee, 0x07, 0x8c, 0x2e, 0xec, 0xa5, 0xb1, 0x71, 0x0a,
|
|
0x2d, 0x55, 0x89, 0x74, 0x28, 0x4d, 0xf1, 0xa2, 0xad, 0x1d, 0x69, 0xc7, 0x35, 0x3b, 0xf9, 0x44,
|
|
0xef, 0xc2, 0xce, 0xdc, 0xf1, 0x63, 0xdc, 0x2e, 0xf2, 0x33, 0x21, 0x7c, 0x5e, 0xfc, 0x54, 0x33,
|
|
0xff, 0xd0, 0xe0, 0x20, 0x23, 0xeb, 0x53, 0x4a, 0xe8, 0xb5, 0x17, 0x45, 0x5e, 0x30, 0xb9, 0xc2,
|
|
0x8b, 0x08, 0x7d, 0x03, 0xf5, 0xd9, 0x52, 0x94, 0x71, 0x76, 0x9e, 0x8b, 0x73, 0xd5, 0xd4, 0x5a,
|
|
0x7e, 0xdb, 0x79, 0x1f, 0x46, 0x0f, 0x60, 0xa9, 0x42, 0x08, 0xca, 0x81, 0x33, 0xc3, 0x32, 0x56,
|
|
0xfe, 0x8d, 0x8e, 0xa0, 0xee, 0xe2, 0x68, 0x44, 0xbd, 0x90, 0x79, 0x24, 0x90, 0x21, 0xe7, 0x8f,
|
|
0xcc, 0x21, 0x34, 0x07, 0xc1, 0x9c, 0x4c, 0xb3, 0x6a, 0xea, 0x50, 0x62, 0x64, 0x9a, 0x66, 0xcc,
|
|
0xc8, 0x14, 0x7d, 0x04, 0x65, 0x87, 0x4e, 0x22, 0x6e, 0x5d, 0xef, 0xee, 0x5b, 0xa2, 0x43, 0x56,
|
|
0xda, 0x21, 0xeb, 0x8e, 0x77, 0xc8, 0xe6, 0x20, 0x73, 0x0e, 0xad, 0xd4, 0x5f, 0x14, 0x92, 0x20,
|
|
0xc2, 0xa8, 0x03, 0x15, 0x8a, 0x59, 0x4c, 0x03, 0xee, 0xf3, 0x15, 0x07, 0x12, 0x86, 0x4e, 0xa0,
|
|
0x3a, 0x76, 0x3c, 0x3f, 0xa6, 0x38, 0xe1, 0x2c, 0x71, 0x93, 0x5c, 0x99, 0x9e, 0xf0, 0x68, 0x7a,
|
|
0x29, 0xf4, 0x76, 0x06, 0x34, 0x7f, 0x81, 0x06, 0xd7, 0xe4, 0xd2, 0x48, 0x29, 0x6b, 0x76, 0xf2,
|
|
0x99, 0xa4, 0x41, 0x7c, 0x77, 0x73, 0x1a, 0x09, 0x28, 0x01, 0x07, 0xf8, 0xe7, 0xa8, 0x5d, 0xda,
|
|
0x00, 0x4e, 0x40, 0x66, 0x0c, 0x4d, 0xc9, 0xbd, 0x4c, 0xd9, 0x0b, 0xc2, 0x98, 0x45, 0x1b, 0x53,
|
|
0x16, 0xb0, 0xb7, 0xa5, 0xdc, 0x93, 0x29, 0x4b, 0x0d, 0x32, 0xa0, 0x1a, 0x52, 0x12, 0x62, 0xca,
|
|
0xd2, 0x81, 0xcd, 0x64, 0xb4, 0x97, 0x34, 0xc1, 0x89, 0xb2, 0x19, 0x90, 0x92, 0xf9, 0xab, 0x06,
|
|
0xf5, 0x0b, 0x6f, 0x3c, 0x4e, 0xcb, 0xd6, 0x82, 0xa2, 0xe7, 0x4a, 0xeb, 0xa2, 0xe7, 0xa6, 0x65,
|
|
0x2c, 0xae, 0x97, 0xb1, 0xf4, 0x4f, 0xca, 0x58, 0xde, 0xa6, 0x8c, 0x7f, 0x69, 0xd0, 0x10, 0xb1,
|
|
0xc8, 0x32, 0x1a, 0x50, 0xa5, 0x38, 0xf4, 0x9d, 0x91, 0xdc, 0xeb, 0x9a, 0x9d, 0xc9, 0xa8, 0x0d,
|
|
0xbb, 0x11, 0x13, 0x2b, 0x5f, 0xe4, 0xaa, 0x54, 0x44, 0x1f, 0xc3, 0x3b, 0x2e, 0xf6, 0x31, 0xc3,
|
|
0x3d, 0x3c, 0x26, 0xc9, 0xd6, 0x73, 0x0b, 0x1e, 0x6f, 0xd5, 0x7e, 0x4e, 0x85, 0xce, 0x60, 0x77,
|
|
0xf4, 0xe4, 0x04, 0x13, 0x2c, 0x02, 0x6d, 0x75, 0x3f, 0xc8, 0x15, 0x3f, 0x1f, 0x11, 0x17, 0xce,
|
|
0x05, 0xd4, 0x4e, 0x6d, 0xcc, 0x33, 0x51, 0x42, 0x79, 0x8e, 0x74, 0x68, 0x5c, 0x0c, 0x2e, 0x2f,
|
|
0x7f, 0xb8, 0x1f, 0x5e, 0x0d, 0x6f, 0x1e, 0x86, 0x7a, 0x01, 0x35, 0xa1, 0xc6, 0x4f, 0x86, 0x37,
|
|
0xc3, 0xbe, 0xae, 0x65, 0xe2, 0xdd, 0xcd, 0x75, 0x5f, 0x2f, 0x9a, 0xdf, 0x43, 0xf3, 0x9c, 0x62,
|
|
0x87, 0xe1, 0x97, 0x47, 0xf7, 0x13, 0x00, 0xd9, 0x49, 0x0f, 0x6f, 0x1c, 0xe0, 0x1c, 0xd4, 0xfc,
|
|
0x0e, 0x5a, 0xa9, 0x6f, 0x59, 0xd3, 0xd5, 0x06, 0xbf, 0xd9, 0xf5, 0x13, 0xd4, 0x6d, 0xec, 0xb8,
|
|
0xdb, 0x0f, 0x8e, 0xca, 0x54, 0xda, 0x9e, 0xe9, 0x01, 0x1a, 0x82, 0xe9, 0xdf, 0x4e, 0xe1, 0x37,
|
|
0x0d, 0x9a, 0xf7, 0xa1, 0x9b, 0x2b, 0xfd, 0xff, 0x39, 0xfe, 0x03, 0x68, 0xa5, 0xc1, 0xc8, 0x44,
|
|
0xd5, 0xc4, 0xb4, 0xed, 0x13, 0xfb, 0x11, 0x9a, 0x17, 0x7c, 0xce, 0xff, 0xfb, 0xee, 0x74, 0xff,
|
|
0x2c, 0x83, 0x6e, 0xe3, 0x88, 0xc4, 0x74, 0x84, 0x6f, 0xe5, 0x1f, 0x00, 0xea, 0x41, 0x2d, 0x7b,
|
|
0xce, 0xd0, 0xe1, 0x2b, 0x8f, 0xb1, 0xb1, 0xb7, 0xc6, 0xd1, 0x4f, 0xfe, 0x06, 0xcc, 0x02, 0xfa,
|
|
0x02, 0x2a, 0xe2, 0x25, 0x41, 0xed, 0x9c, 0x03, 0xe5, 0xb1, 0x32, 0x0e, 0x9e, 0xd1, 0x88, 0xe2,
|
|
0x99, 0x05, 0x74, 0x0a, 0x3b, 0xfc, 0x7e, 0x44, 0x6b, 0x77, 0x69, 0x6a, 0xde, 0x5e, 0x57, 0x64,
|
|
0xd6, 0x9f, 0x41, 0x39, 0xd9, 0x6a, 0xb4, 0xb7, 0x76, 0x17, 0x08, 0xdb, 0xfd, 0x17, 0xee, 0x08,
|
|
0x11, 0xb9, 0xd8, 0x3a, 0x25, 0x72, 0x65, 0xc9, 0x95, 0xc8, 0xd5, 0x15, 0x15, 0xdc, 0xc9, 0xc4,
|
|
0x2b, 0xdc, 0xb9, 0x65, 0x53, 0xb8, 0xf3, 0xab, 0x21, 0xb8, 0xc5, 0x14, 0x29, 0xdc, 0xca, 0x94,
|
|
0x2b, 0xdc, 0xea, 0xc8, 0xf1, 0xaa, 0x55, 0xc4, 0xec, 0x28, 0x0e, 0x94, 0x71, 0x7a, 0xa5, 0x69,
|
|
0x5f, 0x42, 0xf3, 0x2b, 0xcc, 0x6e, 0xf9, 0xef, 0xde, 0x20, 0x18, 0x13, 0xf4, 0x02, 0xd4, 0x78,
|
|
0x2f, 0xe7, 0x7c, 0x09, 0x37, 0x0b, 0x8f, 0x15, 0x0e, 0x3c, 0xf9, 0x3b, 0x00, 0x00, 0xff, 0xff,
|
|
0x4a, 0x1b, 0x84, 0x5d, 0x4f, 0x0a, 0x00, 0x00,
|
|
}
|