Skip to content

Commit

Permalink
Merge pull request #4 from avioconsulting/feature/tsherman/identifier…
Browse files Browse the repository at this point in the history
…-types

Updates for identifier types necessary for adding the identifier type…
  • Loading branch information
tannersherman authored Apr 26, 2024
2 parents 16ff206 + 79640fa commit 2ea22f3
Show file tree
Hide file tree
Showing 9 changed files with 537 additions and 274 deletions.
8 changes: 7 additions & 1 deletion apm/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5589,10 +5589,16 @@ components:
type: boolean
qualifiers:
items:
type: object
$ref: '#/components/schemas/identifierTypeQualifier'
type: array
environment_id:
type: string
required:
- description
- id
- label
- name
- qualifiers
type: object
identifierTypeQualifier_allOf:
properties:
Expand Down
43 changes: 9 additions & 34 deletions apm/docs/IdentifierType.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**Label** | Pointer to **string** | | [optional]
**Description** | Pointer to **string** | | [optional]
**Id** | **string** | |
**Name** | **string** | |
**Label** | **string** | |
**Description** | **string** | |
**Readonly** | Pointer to **bool** | | [optional]
**Qualifiers** | Pointer to **[]map[string]interface{}** | | [optional]
**Qualifiers** | [**[]IdentifierTypeQualifier**](IdentifierTypeQualifier.md) | |
**EnvironmentId** | Pointer to **string** | | [optional]

## Methods

### NewIdentifierType

`func NewIdentifierType() *IdentifierType`
`func NewIdentifierType(id string, name string, label string, description string, qualifiers []IdentifierTypeQualifier, ) *IdentifierType`

NewIdentifierType instantiates a new IdentifierType object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -50,11 +50,6 @@ and a boolean to check if the value has been set.

SetId sets Id field to given value.

### HasId

`func (o *IdentifierType) HasId() bool`

HasId returns a boolean if a field has been set.

### GetName

Expand All @@ -75,11 +70,6 @@ and a boolean to check if the value has been set.

SetName sets Name field to given value.

### HasName

`func (o *IdentifierType) HasName() bool`

HasName returns a boolean if a field has been set.

### GetLabel

Expand All @@ -100,11 +90,6 @@ and a boolean to check if the value has been set.

SetLabel sets Label field to given value.

### HasLabel

`func (o *IdentifierType) HasLabel() bool`

HasLabel returns a boolean if a field has been set.

### GetDescription

Expand All @@ -125,11 +110,6 @@ and a boolean to check if the value has been set.

SetDescription sets Description field to given value.

### HasDescription

`func (o *IdentifierType) HasDescription() bool`

HasDescription returns a boolean if a field has been set.

### GetReadonly

Expand Down Expand Up @@ -158,28 +138,23 @@ HasReadonly returns a boolean if a field has been set.

### GetQualifiers

`func (o *IdentifierType) GetQualifiers() []map[string]interface{}`
`func (o *IdentifierType) GetQualifiers() []IdentifierTypeQualifier`

GetQualifiers returns the Qualifiers field if non-nil, zero value otherwise.

### GetQualifiersOk

`func (o *IdentifierType) GetQualifiersOk() (*[]map[string]interface{}, bool)`
`func (o *IdentifierType) GetQualifiersOk() (*[]IdentifierTypeQualifier, bool)`

GetQualifiersOk returns a tuple with the Qualifiers field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetQualifiers

`func (o *IdentifierType) SetQualifiers(v []map[string]interface{})`
`func (o *IdentifierType) SetQualifiers(v []IdentifierTypeQualifier)`

SetQualifiers sets Qualifiers field to given value.

### HasQualifiers

`func (o *IdentifierType) HasQualifiers() bool`

HasQualifiers returns a boolean if a field has been set.

### GetEnvironmentId

Expand Down
43 changes: 9 additions & 34 deletions apm/docs/IdentifierTypeAllOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**Label** | Pointer to **string** | | [optional]
**Description** | Pointer to **string** | | [optional]
**Id** | **string** | |
**Name** | **string** | |
**Label** | **string** | |
**Description** | **string** | |
**Readonly** | Pointer to **bool** | | [optional]
**Qualifiers** | Pointer to **[]map[string]interface{}** | | [optional]
**Qualifiers** | [**[]IdentifierTypeQualifier**](IdentifierTypeQualifier.md) | |
**EnvironmentId** | Pointer to **string** | | [optional]

## Methods

### NewIdentifierTypeAllOf

`func NewIdentifierTypeAllOf() *IdentifierTypeAllOf`
`func NewIdentifierTypeAllOf(id string, name string, label string, description string, qualifiers []IdentifierTypeQualifier, ) *IdentifierTypeAllOf`

NewIdentifierTypeAllOf instantiates a new IdentifierTypeAllOf object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -50,11 +50,6 @@ and a boolean to check if the value has been set.

SetId sets Id field to given value.

### HasId

`func (o *IdentifierTypeAllOf) HasId() bool`

HasId returns a boolean if a field has been set.

### GetName

Expand All @@ -75,11 +70,6 @@ and a boolean to check if the value has been set.

SetName sets Name field to given value.

### HasName

`func (o *IdentifierTypeAllOf) HasName() bool`

HasName returns a boolean if a field has been set.

### GetLabel

Expand All @@ -100,11 +90,6 @@ and a boolean to check if the value has been set.

SetLabel sets Label field to given value.

### HasLabel

`func (o *IdentifierTypeAllOf) HasLabel() bool`

HasLabel returns a boolean if a field has been set.

### GetDescription

Expand All @@ -125,11 +110,6 @@ and a boolean to check if the value has been set.

SetDescription sets Description field to given value.

### HasDescription

`func (o *IdentifierTypeAllOf) HasDescription() bool`

HasDescription returns a boolean if a field has been set.

### GetReadonly

Expand Down Expand Up @@ -158,28 +138,23 @@ HasReadonly returns a boolean if a field has been set.

### GetQualifiers

`func (o *IdentifierTypeAllOf) GetQualifiers() []map[string]interface{}`
`func (o *IdentifierTypeAllOf) GetQualifiers() []IdentifierTypeQualifier`

GetQualifiers returns the Qualifiers field if non-nil, zero value otherwise.

### GetQualifiersOk

`func (o *IdentifierTypeAllOf) GetQualifiersOk() (*[]map[string]interface{}, bool)`
`func (o *IdentifierTypeAllOf) GetQualifiersOk() (*[]IdentifierTypeQualifier, bool)`

GetQualifiersOk returns a tuple with the Qualifiers field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetQualifiers

`func (o *IdentifierTypeAllOf) SetQualifiers(v []map[string]interface{})`
`func (o *IdentifierTypeAllOf) SetQualifiers(v []IdentifierTypeQualifier)`

SetQualifiers sets Qualifiers field to given value.

### HasQualifiers

`func (o *IdentifierTypeAllOf) HasQualifiers() bool`

HasQualifiers returns a boolean if a field has been set.

### GetEnvironmentId

Expand Down
Loading

0 comments on commit 2ea22f3

Please sign in to comment.