OBJECT
ManagementEndpointMutation
link GraphQL Schema definition
- type ManagementEndpointMutation {
- # Attach Management Endpoint collector
- #
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointCollectorInput! :
- ): ManagementEndpointCollector
- # Generate and initialize credential broker configuration such as script,
- # access-key, yaml file, brokerId to deploy broker
- #
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointCredentialBrokerInput! :
- ): ManagementEndpointCredentialBrokerResponse
- # Attach self managed Management Endpoint collector
- #
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointSelfManagedCollectorInput! :
- ): ManagementEndpointCollector
- # Bulk create, update and delete ManagementEndpoint, ManagementEndpointCredential
- # and ManagementEndpointCredentialMapping resources
- #
- # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
- # and schema elements may change over future iterations.
- #
- # Arguments
- # managementEndpointCredentialMappingRequests: [Not
- # documented]
- # managementEndpointCredentialRequests: [Not
- # documented]
- # managementEndpointRequests: [Not documented]
- (
- ManagementEndpointCredentialMappingRequest!], : [
- ManagementEndpointCredentialRequest!], : [
- ManagementEndpointRequest!] : [
- ): ManagementEndpointBulkUpdateResponse
- # Bulk onboard cloud accounts. It will create/update the cloud account with
- # provided account and credential details
- #
- # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
- # and schema elements may change over future iterations.
- #
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointUpsertWithCredentialInput!]! : [
- ): ManagementEndpointBulkUpsertWithCredentialResponse
- # Delete an existing Management Endpoint and the credentials associated with it.
- # Credentials that are being used by other endpoints will not be deleted.
- # Setting the boolean conserveCredentials to true will skip deleting the
- # credentials.
- # Setting the boolean forceDelete to true will delete the endpoint even if event
- # stream is connected.
- #
- # Arguments
- # conserveCredentials: [Not documented]
- # forceDelete: [Not documented]
- # id: [Not documented]
- (
- Boolean, :
- Boolean, :
- ID! :
- ): ManagementEndpoint
- # Delete an existing Management Endpoint Credential
- #
- # Arguments
- # id: [Not documented]
- ID!): ManagementEndpointCredential ( :
- # delete a mapping between an existing Management Endpoint and a Credential
- #
- # Arguments
- # managementEndpointCredentialId: [Not
- # documented]
- # managementEndpointId: [Not documented]
- (
- ID!, :
- ID! :
- ): ManagementEndpointCredentialMapping
- # Detach Management Endpoint collector by ID
- #
- # Arguments
- # id: [Not documented]
- ID!): ManagementEndpointCollector ( :
- # Deploy management endpoint to cloud proxy agent
- #
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointDeployToCloudProxyAgentInput :
- ): ManagementEndpointDeployToCloudProxyAgentResponse
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointOnboardingInfoInput :
- ): ManagementEndpointOnboardingInfoResponse!
- # Upgrade Management Endpoint collector
- #
- # Arguments
- # input: [Not documented]
- (
- ID! :
- ): ManagementEndpointCollector
- # Update an existing Management Endpoint or create a new one
- # Empty list input for cspProjectIds disassociates Management Endpoint and the CSP
- # project(s) in Update operation
- #
- # Arguments
- # input: [Not documented]
- ManagementEndpointInput): ManagementEndpoint ( :
- # Create or Update an existing Management Endpoint Credential.
- #
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointCredentialsInput :
- ): ManagementEndpointCredential
- # Update a mapping between an existing Management Endpoint and a Credential
- #
- # Arguments
- # endpointCredentialMapping: [Not documented]
- (
- ManagementEndpointCredentialMappingInput! :
- ): ManagementEndpointCredentialMapping
- # Insert/Update Management Endpoint and Credential and also create mapping between
- # endpoint and credential
- #
- # Arguments
- # input: [Not documented]
- (
- ManagementEndpointUpsertWithCredentialInput :
- ): ManagementEndpointUpsertResponse
- # Validates Management Endpoint Credentials and update account once credential are
- # validated
- #
- # Arguments
- # managementEndpointId: [Not documented]
- ID!): ManagementEndpointValidation ( :
- }