Documentation
¶
Overview ¶
* Copyright 2019 The original author or authors * * 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.
* Copyright 2019 The original author or authors * * 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.
* Copyright 2019 The original author or authors * * 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.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdapterLister ¶
type AdapterLister interface { // List lists all Adapters in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Adapter, err error) // Adapters returns an object that can list and get Adapters. Adapters(namespace string) AdapterNamespaceLister AdapterListerExpansion }
AdapterLister helps list Adapters.
func NewAdapterLister ¶
func NewAdapterLister(indexer cache.Indexer) AdapterLister
NewAdapterLister returns a new AdapterLister.
type AdapterListerExpansion ¶
type AdapterListerExpansion interface{}
AdapterListerExpansion allows custom methods to be added to AdapterLister.
type AdapterNamespaceLister ¶
type AdapterNamespaceLister interface { // List lists all Adapters in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Adapter, err error) // Get retrieves the Adapter from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Adapter, error) AdapterNamespaceListerExpansion }
AdapterNamespaceLister helps list and get Adapters.
type AdapterNamespaceListerExpansion ¶
type AdapterNamespaceListerExpansion interface{}
AdapterNamespaceListerExpansion allows custom methods to be added to AdapterNamespaceLister.
type DeployerLister ¶
type DeployerLister interface { // List lists all Deployers in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Deployer, err error) // Deployers returns an object that can list and get Deployers. Deployers(namespace string) DeployerNamespaceLister DeployerListerExpansion }
DeployerLister helps list Deployers.
func NewDeployerLister ¶
func NewDeployerLister(indexer cache.Indexer) DeployerLister
NewDeployerLister returns a new DeployerLister.
type DeployerListerExpansion ¶
type DeployerListerExpansion interface{}
DeployerListerExpansion allows custom methods to be added to DeployerLister.
type DeployerNamespaceLister ¶
type DeployerNamespaceLister interface { // List lists all Deployers in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Deployer, err error) // Get retrieves the Deployer from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Deployer, error) DeployerNamespaceListerExpansion }
DeployerNamespaceLister helps list and get Deployers.
type DeployerNamespaceListerExpansion ¶
type DeployerNamespaceListerExpansion interface{}
DeployerNamespaceListerExpansion allows custom methods to be added to DeployerNamespaceLister.