v1alpha1

package
v0.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 8, 2022 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Overview

This package has the automatically generated typed clients.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AppV1alpha1Client

type AppV1alpha1Client struct {
	// contains filtered or unexported fields
}

AppV1alpha1Client is used to interact with features provided by the app.azurerm.kubeform.com group.

func New

New creates a new AppV1alpha1Client for the given RESTClient.

func NewForConfig

func NewForConfig(c *rest.Config) (*AppV1alpha1Client, error)

NewForConfig creates a new AppV1alpha1Client for the given config.

func NewForConfigOrDie

func NewForConfigOrDie(c *rest.Config) *AppV1alpha1Client

NewForConfigOrDie creates a new AppV1alpha1Client for the given config and panics if there is an error in the config.

func (*AppV1alpha1Client) ConfigurationFeatures added in v0.5.0

func (c *AppV1alpha1Client) ConfigurationFeatures(namespace string) ConfigurationFeatureInterface

func (*AppV1alpha1Client) ConfigurationKeys added in v0.5.0

func (c *AppV1alpha1Client) ConfigurationKeys(namespace string) ConfigurationKeyInterface

func (*AppV1alpha1Client) Configurations

func (c *AppV1alpha1Client) Configurations(namespace string) ConfigurationInterface

func (*AppV1alpha1Client) RESTClient

func (c *AppV1alpha1Client) RESTClient() rest.Interface

RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.

func (*AppV1alpha1Client) ServiceActiveSlots

func (c *AppV1alpha1Client) ServiceActiveSlots(namespace string) ServiceActiveSlotInterface

func (*AppV1alpha1Client) ServiceCertificateBindings

func (c *AppV1alpha1Client) ServiceCertificateBindings(namespace string) ServiceCertificateBindingInterface

func (*AppV1alpha1Client) ServiceCertificateOrders

func (c *AppV1alpha1Client) ServiceCertificateOrders(namespace string) ServiceCertificateOrderInterface

func (*AppV1alpha1Client) ServiceCertificates

func (c *AppV1alpha1Client) ServiceCertificates(namespace string) ServiceCertificateInterface

func (*AppV1alpha1Client) ServiceCustomHostnameBindings

func (c *AppV1alpha1Client) ServiceCustomHostnameBindings(namespace string) ServiceCustomHostnameBindingInterface

func (*AppV1alpha1Client) ServiceEnvironmentV3s

func (c *AppV1alpha1Client) ServiceEnvironmentV3s(namespace string) ServiceEnvironmentV3Interface

func (*AppV1alpha1Client) ServiceEnvironments

func (c *AppV1alpha1Client) ServiceEnvironments(namespace string) ServiceEnvironmentInterface

func (*AppV1alpha1Client) ServiceHybridConnections

func (c *AppV1alpha1Client) ServiceHybridConnections(namespace string) ServiceHybridConnectionInterface

func (*AppV1alpha1Client) ServiceManagedCertificates

func (c *AppV1alpha1Client) ServiceManagedCertificates(namespace string) ServiceManagedCertificateInterface

func (*AppV1alpha1Client) ServicePlans

func (c *AppV1alpha1Client) ServicePlans(namespace string) ServicePlanInterface

func (*AppV1alpha1Client) ServicePublicCertificates added in v0.5.0

func (c *AppV1alpha1Client) ServicePublicCertificates(namespace string) ServicePublicCertificateInterface

func (*AppV1alpha1Client) ServiceSlotCustomHostnameBindings added in v0.5.0

func (c *AppV1alpha1Client) ServiceSlotCustomHostnameBindings(namespace string) ServiceSlotCustomHostnameBindingInterface

func (*AppV1alpha1Client) ServiceSlotVirtualNetworkSwiftConnections

func (c *AppV1alpha1Client) ServiceSlotVirtualNetworkSwiftConnections(namespace string) ServiceSlotVirtualNetworkSwiftConnectionInterface

func (*AppV1alpha1Client) ServiceSlots

func (c *AppV1alpha1Client) ServiceSlots(namespace string) ServiceSlotInterface

func (*AppV1alpha1Client) ServiceSourceControlTokens

func (c *AppV1alpha1Client) ServiceSourceControlTokens(namespace string) ServiceSourceControlTokenInterface

func (*AppV1alpha1Client) ServiceVirtualNetworkSwiftConnections

func (c *AppV1alpha1Client) ServiceVirtualNetworkSwiftConnections(namespace string) ServiceVirtualNetworkSwiftConnectionInterface

func (*AppV1alpha1Client) Services

func (c *AppV1alpha1Client) Services(namespace string) ServiceInterface

type ConfigurationExpansion

type ConfigurationExpansion interface{}

type ConfigurationFeatureExpansion added in v0.5.0

type ConfigurationFeatureExpansion interface{}

type ConfigurationFeatureInterface added in v0.5.0

type ConfigurationFeatureInterface interface {
	Create(ctx context.Context, configurationFeature *v1alpha1.ConfigurationFeature, opts v1.CreateOptions) (*v1alpha1.ConfigurationFeature, error)
	Update(ctx context.Context, configurationFeature *v1alpha1.ConfigurationFeature, opts v1.UpdateOptions) (*v1alpha1.ConfigurationFeature, error)
	UpdateStatus(ctx context.Context, configurationFeature *v1alpha1.ConfigurationFeature, opts v1.UpdateOptions) (*v1alpha1.ConfigurationFeature, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ConfigurationFeature, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ConfigurationFeatureList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ConfigurationFeature, err error)
	ConfigurationFeatureExpansion
}

ConfigurationFeatureInterface has methods to work with ConfigurationFeature resources.

type ConfigurationFeaturesGetter added in v0.5.0

type ConfigurationFeaturesGetter interface {
	ConfigurationFeatures(namespace string) ConfigurationFeatureInterface
}

ConfigurationFeaturesGetter has a method to return a ConfigurationFeatureInterface. A group's client should implement this interface.

type ConfigurationInterface

type ConfigurationInterface interface {
	Create(ctx context.Context, configuration *v1alpha1.Configuration, opts v1.CreateOptions) (*v1alpha1.Configuration, error)
	Update(ctx context.Context, configuration *v1alpha1.Configuration, opts v1.UpdateOptions) (*v1alpha1.Configuration, error)
	UpdateStatus(ctx context.Context, configuration *v1alpha1.Configuration, opts v1.UpdateOptions) (*v1alpha1.Configuration, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.Configuration, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ConfigurationList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.Configuration, err error)
	ConfigurationExpansion
}

ConfigurationInterface has methods to work with Configuration resources.

type ConfigurationKeyExpansion added in v0.5.0

type ConfigurationKeyExpansion interface{}

type ConfigurationKeyInterface added in v0.5.0

type ConfigurationKeyInterface interface {
	Create(ctx context.Context, configurationKey *v1alpha1.ConfigurationKey, opts v1.CreateOptions) (*v1alpha1.ConfigurationKey, error)
	Update(ctx context.Context, configurationKey *v1alpha1.ConfigurationKey, opts v1.UpdateOptions) (*v1alpha1.ConfigurationKey, error)
	UpdateStatus(ctx context.Context, configurationKey *v1alpha1.ConfigurationKey, opts v1.UpdateOptions) (*v1alpha1.ConfigurationKey, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ConfigurationKey, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ConfigurationKeyList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ConfigurationKey, err error)
	ConfigurationKeyExpansion
}

ConfigurationKeyInterface has methods to work with ConfigurationKey resources.

type ConfigurationKeysGetter added in v0.5.0

type ConfigurationKeysGetter interface {
	ConfigurationKeys(namespace string) ConfigurationKeyInterface
}

ConfigurationKeysGetter has a method to return a ConfigurationKeyInterface. A group's client should implement this interface.

type ConfigurationsGetter

type ConfigurationsGetter interface {
	Configurations(namespace string) ConfigurationInterface
}

ConfigurationsGetter has a method to return a ConfigurationInterface. A group's client should implement this interface.

type ServiceActiveSlotExpansion

type ServiceActiveSlotExpansion interface{}

type ServiceActiveSlotInterface

type ServiceActiveSlotInterface interface {
	Create(ctx context.Context, serviceActiveSlot *v1alpha1.ServiceActiveSlot, opts v1.CreateOptions) (*v1alpha1.ServiceActiveSlot, error)
	Update(ctx context.Context, serviceActiveSlot *v1alpha1.ServiceActiveSlot, opts v1.UpdateOptions) (*v1alpha1.ServiceActiveSlot, error)
	UpdateStatus(ctx context.Context, serviceActiveSlot *v1alpha1.ServiceActiveSlot, opts v1.UpdateOptions) (*v1alpha1.ServiceActiveSlot, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceActiveSlot, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceActiveSlotList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceActiveSlot, err error)
	ServiceActiveSlotExpansion
}

ServiceActiveSlotInterface has methods to work with ServiceActiveSlot resources.

type ServiceActiveSlotsGetter

type ServiceActiveSlotsGetter interface {
	ServiceActiveSlots(namespace string) ServiceActiveSlotInterface
}

ServiceActiveSlotsGetter has a method to return a ServiceActiveSlotInterface. A group's client should implement this interface.

type ServiceCertificateBindingExpansion

type ServiceCertificateBindingExpansion interface{}

type ServiceCertificateBindingInterface

type ServiceCertificateBindingInterface interface {
	Create(ctx context.Context, serviceCertificateBinding *v1alpha1.ServiceCertificateBinding, opts v1.CreateOptions) (*v1alpha1.ServiceCertificateBinding, error)
	Update(ctx context.Context, serviceCertificateBinding *v1alpha1.ServiceCertificateBinding, opts v1.UpdateOptions) (*v1alpha1.ServiceCertificateBinding, error)
	UpdateStatus(ctx context.Context, serviceCertificateBinding *v1alpha1.ServiceCertificateBinding, opts v1.UpdateOptions) (*v1alpha1.ServiceCertificateBinding, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceCertificateBinding, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceCertificateBindingList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceCertificateBinding, err error)
	ServiceCertificateBindingExpansion
}

ServiceCertificateBindingInterface has methods to work with ServiceCertificateBinding resources.

type ServiceCertificateBindingsGetter

type ServiceCertificateBindingsGetter interface {
	ServiceCertificateBindings(namespace string) ServiceCertificateBindingInterface
}

ServiceCertificateBindingsGetter has a method to return a ServiceCertificateBindingInterface. A group's client should implement this interface.

type ServiceCertificateExpansion

type ServiceCertificateExpansion interface{}

type ServiceCertificateInterface

type ServiceCertificateInterface interface {
	Create(ctx context.Context, serviceCertificate *v1alpha1.ServiceCertificate, opts v1.CreateOptions) (*v1alpha1.ServiceCertificate, error)
	Update(ctx context.Context, serviceCertificate *v1alpha1.ServiceCertificate, opts v1.UpdateOptions) (*v1alpha1.ServiceCertificate, error)
	UpdateStatus(ctx context.Context, serviceCertificate *v1alpha1.ServiceCertificate, opts v1.UpdateOptions) (*v1alpha1.ServiceCertificate, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceCertificate, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceCertificateList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceCertificate, err error)
	ServiceCertificateExpansion
}

ServiceCertificateInterface has methods to work with ServiceCertificate resources.

type ServiceCertificateOrderExpansion

type ServiceCertificateOrderExpansion interface{}

type ServiceCertificateOrderInterface

type ServiceCertificateOrderInterface interface {
	Create(ctx context.Context, serviceCertificateOrder *v1alpha1.ServiceCertificateOrder, opts v1.CreateOptions) (*v1alpha1.ServiceCertificateOrder, error)
	Update(ctx context.Context, serviceCertificateOrder *v1alpha1.ServiceCertificateOrder, opts v1.UpdateOptions) (*v1alpha1.ServiceCertificateOrder, error)
	UpdateStatus(ctx context.Context, serviceCertificateOrder *v1alpha1.ServiceCertificateOrder, opts v1.UpdateOptions) (*v1alpha1.ServiceCertificateOrder, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceCertificateOrder, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceCertificateOrderList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceCertificateOrder, err error)
	ServiceCertificateOrderExpansion
}

ServiceCertificateOrderInterface has methods to work with ServiceCertificateOrder resources.

type ServiceCertificateOrdersGetter

type ServiceCertificateOrdersGetter interface {
	ServiceCertificateOrders(namespace string) ServiceCertificateOrderInterface
}

ServiceCertificateOrdersGetter has a method to return a ServiceCertificateOrderInterface. A group's client should implement this interface.

type ServiceCertificatesGetter

type ServiceCertificatesGetter interface {
	ServiceCertificates(namespace string) ServiceCertificateInterface
}

ServiceCertificatesGetter has a method to return a ServiceCertificateInterface. A group's client should implement this interface.

type ServiceCustomHostnameBindingExpansion

type ServiceCustomHostnameBindingExpansion interface{}

type ServiceCustomHostnameBindingInterface

type ServiceCustomHostnameBindingInterface interface {
	Create(ctx context.Context, serviceCustomHostnameBinding *v1alpha1.ServiceCustomHostnameBinding, opts v1.CreateOptions) (*v1alpha1.ServiceCustomHostnameBinding, error)
	Update(ctx context.Context, serviceCustomHostnameBinding *v1alpha1.ServiceCustomHostnameBinding, opts v1.UpdateOptions) (*v1alpha1.ServiceCustomHostnameBinding, error)
	UpdateStatus(ctx context.Context, serviceCustomHostnameBinding *v1alpha1.ServiceCustomHostnameBinding, opts v1.UpdateOptions) (*v1alpha1.ServiceCustomHostnameBinding, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceCustomHostnameBinding, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceCustomHostnameBindingList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceCustomHostnameBinding, err error)
	ServiceCustomHostnameBindingExpansion
}

ServiceCustomHostnameBindingInterface has methods to work with ServiceCustomHostnameBinding resources.

type ServiceCustomHostnameBindingsGetter

type ServiceCustomHostnameBindingsGetter interface {
	ServiceCustomHostnameBindings(namespace string) ServiceCustomHostnameBindingInterface
}

ServiceCustomHostnameBindingsGetter has a method to return a ServiceCustomHostnameBindingInterface. A group's client should implement this interface.

type ServiceEnvironmentExpansion

type ServiceEnvironmentExpansion interface{}

type ServiceEnvironmentInterface

type ServiceEnvironmentInterface interface {
	Create(ctx context.Context, serviceEnvironment *v1alpha1.ServiceEnvironment, opts v1.CreateOptions) (*v1alpha1.ServiceEnvironment, error)
	Update(ctx context.Context, serviceEnvironment *v1alpha1.ServiceEnvironment, opts v1.UpdateOptions) (*v1alpha1.ServiceEnvironment, error)
	UpdateStatus(ctx context.Context, serviceEnvironment *v1alpha1.ServiceEnvironment, opts v1.UpdateOptions) (*v1alpha1.ServiceEnvironment, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceEnvironment, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceEnvironmentList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceEnvironment, err error)
	ServiceEnvironmentExpansion
}

ServiceEnvironmentInterface has methods to work with ServiceEnvironment resources.

type ServiceEnvironmentV3Expansion

type ServiceEnvironmentV3Expansion interface{}

type ServiceEnvironmentV3Interface

type ServiceEnvironmentV3Interface interface {
	Create(ctx context.Context, serviceEnvironmentV3 *v1alpha1.ServiceEnvironmentV3, opts v1.CreateOptions) (*v1alpha1.ServiceEnvironmentV3, error)
	Update(ctx context.Context, serviceEnvironmentV3 *v1alpha1.ServiceEnvironmentV3, opts v1.UpdateOptions) (*v1alpha1.ServiceEnvironmentV3, error)
	UpdateStatus(ctx context.Context, serviceEnvironmentV3 *v1alpha1.ServiceEnvironmentV3, opts v1.UpdateOptions) (*v1alpha1.ServiceEnvironmentV3, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceEnvironmentV3, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceEnvironmentV3List, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceEnvironmentV3, err error)
	ServiceEnvironmentV3Expansion
}

ServiceEnvironmentV3Interface has methods to work with ServiceEnvironmentV3 resources.

type ServiceEnvironmentV3sGetter

type ServiceEnvironmentV3sGetter interface {
	ServiceEnvironmentV3s(namespace string) ServiceEnvironmentV3Interface
}

ServiceEnvironmentV3sGetter has a method to return a ServiceEnvironmentV3Interface. A group's client should implement this interface.

type ServiceEnvironmentsGetter

type ServiceEnvironmentsGetter interface {
	ServiceEnvironments(namespace string) ServiceEnvironmentInterface
}

ServiceEnvironmentsGetter has a method to return a ServiceEnvironmentInterface. A group's client should implement this interface.

type ServiceExpansion

type ServiceExpansion interface{}

type ServiceHybridConnectionExpansion

type ServiceHybridConnectionExpansion interface{}

type ServiceHybridConnectionInterface

type ServiceHybridConnectionInterface interface {
	Create(ctx context.Context, serviceHybridConnection *v1alpha1.ServiceHybridConnection, opts v1.CreateOptions) (*v1alpha1.ServiceHybridConnection, error)
	Update(ctx context.Context, serviceHybridConnection *v1alpha1.ServiceHybridConnection, opts v1.UpdateOptions) (*v1alpha1.ServiceHybridConnection, error)
	UpdateStatus(ctx context.Context, serviceHybridConnection *v1alpha1.ServiceHybridConnection, opts v1.UpdateOptions) (*v1alpha1.ServiceHybridConnection, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceHybridConnection, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceHybridConnectionList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceHybridConnection, err error)
	ServiceHybridConnectionExpansion
}

ServiceHybridConnectionInterface has methods to work with ServiceHybridConnection resources.

type ServiceHybridConnectionsGetter

type ServiceHybridConnectionsGetter interface {
	ServiceHybridConnections(namespace string) ServiceHybridConnectionInterface
}

ServiceHybridConnectionsGetter has a method to return a ServiceHybridConnectionInterface. A group's client should implement this interface.

type ServiceInterface

type ServiceInterface interface {
	Create(ctx context.Context, service *v1alpha1.Service, opts v1.CreateOptions) (*v1alpha1.Service, error)
	Update(ctx context.Context, service *v1alpha1.Service, opts v1.UpdateOptions) (*v1alpha1.Service, error)
	UpdateStatus(ctx context.Context, service *v1alpha1.Service, opts v1.UpdateOptions) (*v1alpha1.Service, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.Service, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.Service, err error)
	ServiceExpansion
}

ServiceInterface has methods to work with Service resources.

type ServiceManagedCertificateExpansion

type ServiceManagedCertificateExpansion interface{}

type ServiceManagedCertificateInterface

type ServiceManagedCertificateInterface interface {
	Create(ctx context.Context, serviceManagedCertificate *v1alpha1.ServiceManagedCertificate, opts v1.CreateOptions) (*v1alpha1.ServiceManagedCertificate, error)
	Update(ctx context.Context, serviceManagedCertificate *v1alpha1.ServiceManagedCertificate, opts v1.UpdateOptions) (*v1alpha1.ServiceManagedCertificate, error)
	UpdateStatus(ctx context.Context, serviceManagedCertificate *v1alpha1.ServiceManagedCertificate, opts v1.UpdateOptions) (*v1alpha1.ServiceManagedCertificate, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceManagedCertificate, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceManagedCertificateList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceManagedCertificate, err error)
	ServiceManagedCertificateExpansion
}

ServiceManagedCertificateInterface has methods to work with ServiceManagedCertificate resources.

type ServiceManagedCertificatesGetter

type ServiceManagedCertificatesGetter interface {
	ServiceManagedCertificates(namespace string) ServiceManagedCertificateInterface
}

ServiceManagedCertificatesGetter has a method to return a ServiceManagedCertificateInterface. A group's client should implement this interface.

type ServicePlanExpansion

type ServicePlanExpansion interface{}

type ServicePlanInterface

type ServicePlanInterface interface {
	Create(ctx context.Context, servicePlan *v1alpha1.ServicePlan, opts v1.CreateOptions) (*v1alpha1.ServicePlan, error)
	Update(ctx context.Context, servicePlan *v1alpha1.ServicePlan, opts v1.UpdateOptions) (*v1alpha1.ServicePlan, error)
	UpdateStatus(ctx context.Context, servicePlan *v1alpha1.ServicePlan, opts v1.UpdateOptions) (*v1alpha1.ServicePlan, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServicePlan, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServicePlanList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServicePlan, err error)
	ServicePlanExpansion
}

ServicePlanInterface has methods to work with ServicePlan resources.

type ServicePlansGetter

type ServicePlansGetter interface {
	ServicePlans(namespace string) ServicePlanInterface
}

ServicePlansGetter has a method to return a ServicePlanInterface. A group's client should implement this interface.

type ServicePublicCertificateExpansion added in v0.5.0

type ServicePublicCertificateExpansion interface{}

type ServicePublicCertificateInterface added in v0.5.0

type ServicePublicCertificateInterface interface {
	Create(ctx context.Context, servicePublicCertificate *v1alpha1.ServicePublicCertificate, opts v1.CreateOptions) (*v1alpha1.ServicePublicCertificate, error)
	Update(ctx context.Context, servicePublicCertificate *v1alpha1.ServicePublicCertificate, opts v1.UpdateOptions) (*v1alpha1.ServicePublicCertificate, error)
	UpdateStatus(ctx context.Context, servicePublicCertificate *v1alpha1.ServicePublicCertificate, opts v1.UpdateOptions) (*v1alpha1.ServicePublicCertificate, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServicePublicCertificate, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServicePublicCertificateList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServicePublicCertificate, err error)
	ServicePublicCertificateExpansion
}

ServicePublicCertificateInterface has methods to work with ServicePublicCertificate resources.

type ServicePublicCertificatesGetter added in v0.5.0

type ServicePublicCertificatesGetter interface {
	ServicePublicCertificates(namespace string) ServicePublicCertificateInterface
}

ServicePublicCertificatesGetter has a method to return a ServicePublicCertificateInterface. A group's client should implement this interface.

type ServiceSlotCustomHostnameBindingExpansion added in v0.5.0

type ServiceSlotCustomHostnameBindingExpansion interface{}

type ServiceSlotCustomHostnameBindingInterface added in v0.5.0

ServiceSlotCustomHostnameBindingInterface has methods to work with ServiceSlotCustomHostnameBinding resources.

type ServiceSlotCustomHostnameBindingsGetter added in v0.5.0

type ServiceSlotCustomHostnameBindingsGetter interface {
	ServiceSlotCustomHostnameBindings(namespace string) ServiceSlotCustomHostnameBindingInterface
}

ServiceSlotCustomHostnameBindingsGetter has a method to return a ServiceSlotCustomHostnameBindingInterface. A group's client should implement this interface.

type ServiceSlotExpansion

type ServiceSlotExpansion interface{}

type ServiceSlotInterface

type ServiceSlotInterface interface {
	Create(ctx context.Context, serviceSlot *v1alpha1.ServiceSlot, opts v1.CreateOptions) (*v1alpha1.ServiceSlot, error)
	Update(ctx context.Context, serviceSlot *v1alpha1.ServiceSlot, opts v1.UpdateOptions) (*v1alpha1.ServiceSlot, error)
	UpdateStatus(ctx context.Context, serviceSlot *v1alpha1.ServiceSlot, opts v1.UpdateOptions) (*v1alpha1.ServiceSlot, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceSlot, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceSlotList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceSlot, err error)
	ServiceSlotExpansion
}

ServiceSlotInterface has methods to work with ServiceSlot resources.

type ServiceSlotVirtualNetworkSwiftConnectionExpansion

type ServiceSlotVirtualNetworkSwiftConnectionExpansion interface{}

type ServiceSlotVirtualNetworkSwiftConnectionInterface

ServiceSlotVirtualNetworkSwiftConnectionInterface has methods to work with ServiceSlotVirtualNetworkSwiftConnection resources.

type ServiceSlotVirtualNetworkSwiftConnectionsGetter

type ServiceSlotVirtualNetworkSwiftConnectionsGetter interface {
	ServiceSlotVirtualNetworkSwiftConnections(namespace string) ServiceSlotVirtualNetworkSwiftConnectionInterface
}

ServiceSlotVirtualNetworkSwiftConnectionsGetter has a method to return a ServiceSlotVirtualNetworkSwiftConnectionInterface. A group's client should implement this interface.

type ServiceSlotsGetter

type ServiceSlotsGetter interface {
	ServiceSlots(namespace string) ServiceSlotInterface
}

ServiceSlotsGetter has a method to return a ServiceSlotInterface. A group's client should implement this interface.

type ServiceSourceControlTokenExpansion

type ServiceSourceControlTokenExpansion interface{}

type ServiceSourceControlTokenInterface

type ServiceSourceControlTokenInterface interface {
	Create(ctx context.Context, serviceSourceControlToken *v1alpha1.ServiceSourceControlToken, opts v1.CreateOptions) (*v1alpha1.ServiceSourceControlToken, error)
	Update(ctx context.Context, serviceSourceControlToken *v1alpha1.ServiceSourceControlToken, opts v1.UpdateOptions) (*v1alpha1.ServiceSourceControlToken, error)
	UpdateStatus(ctx context.Context, serviceSourceControlToken *v1alpha1.ServiceSourceControlToken, opts v1.UpdateOptions) (*v1alpha1.ServiceSourceControlToken, error)
	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ServiceSourceControlToken, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ServiceSourceControlTokenList, error)
	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ServiceSourceControlToken, err error)
	ServiceSourceControlTokenExpansion
}

ServiceSourceControlTokenInterface has methods to work with ServiceSourceControlToken resources.

type ServiceSourceControlTokensGetter

type ServiceSourceControlTokensGetter interface {
	ServiceSourceControlTokens(namespace string) ServiceSourceControlTokenInterface
}

ServiceSourceControlTokensGetter has a method to return a ServiceSourceControlTokenInterface. A group's client should implement this interface.

type ServiceVirtualNetworkSwiftConnectionExpansion

type ServiceVirtualNetworkSwiftConnectionExpansion interface{}

type ServiceVirtualNetworkSwiftConnectionInterface

ServiceVirtualNetworkSwiftConnectionInterface has methods to work with ServiceVirtualNetworkSwiftConnection resources.

type ServiceVirtualNetworkSwiftConnectionsGetter

type ServiceVirtualNetworkSwiftConnectionsGetter interface {
	ServiceVirtualNetworkSwiftConnections(namespace string) ServiceVirtualNetworkSwiftConnectionInterface
}

ServiceVirtualNetworkSwiftConnectionsGetter has a method to return a ServiceVirtualNetworkSwiftConnectionInterface. A group's client should implement this interface.

type ServicesGetter

type ServicesGetter interface {
	Services(namespace string) ServiceInterface
}

ServicesGetter has a method to return a ServiceInterface. A group's client should implement this interface.

Directories

Path Synopsis
Package fake has the automatically generated clients.
Package fake has the automatically generated clients.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL