github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_relay_proxy_config.go (about)

     1  /*
     2   * LaunchDarkly REST API
     3   *
     4   * Build custom integrations with the LaunchDarkly REST API
     5   *
     6   * API version: 5.3.0
     7   * Contact: support@launchdarkly.com
     8   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     9   */
    10  
    11  package ldapi
    12  
    13  type RelayProxyConfig struct {
    14  	// The unique resource id.
    15  	Id string `json:"_id"`
    16  	Creator *Member `json:"_creator"`
    17  	// A human-friendly name for the relay proxy configuration
    18  	Name string `json:"name"`
    19  	Policy []Policy `json:"policy"`
    20  	// Full secret key. Only included if creating or resetting the relay proxy configuration
    21  	FullKey string `json:"fullKey,omitempty"`
    22  	// The last 4 digits of the unique secret key for this relay proxy configuration
    23  	DisplayKey string `json:"displayKey"`
    24  	// A unix epoch time in milliseconds specifying the creation time of this relay proxy configuration
    25  	CreationDate int64 `json:"creationDate"`
    26  	// A unix epoch time in milliseconds specifying the last time this relay proxy configuration was modified
    27  	LastModified int64 `json:"lastModified"`
    28  }