github.com/Axway/agent-sdk@v1.1.101/pkg/apic/apiserver/models/management/v1alpha1/model_dataplane_spec_apigee.go (about)

     1  /*
     2   * API Server specification.
     3   *
     4   * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     5   *
     6   * API version: SNAPSHOT
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package management
    11  
    12  // DataplaneSpecApigee The configuration common to all Apigee agents that use this dataplane
    13  type DataplaneSpecApigee struct {
    14  	Type string `json:"type"`
    15  	// The Project ID on GCP that Apigee is configured in
    16  	ProjectId string `json:"projectId"`
    17  	// The Developer that will own all Apigee Applications created by the agent
    18  	DeveloperEmail string `json:"developerEmail"`
    19  	// The discovery mode that the Apigee agents should use
    20  	Mode string `json:"mode,omitempty"`
    21  	// The environment for which the metrics are gathered
    22  	Environment   string                           `json:"environment,omitempty"`
    23  	MetricsFilter DataplaneSpecApigeeMetricsFilter `json:"metricsFilter,omitempty"`
    24  }