azure_mgmt_confluent 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent.rb +47 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/confluent_management_client.rb +139 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/marketplace_agreements.rb +317 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/confluent_agreement_resource.rb +161 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/confluent_agreement_resource_list_response.rb +100 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/error_response_body.rb +94 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/offer_detail.rb +119 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_display.rb +80 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_list_result.rb +100 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_result.rb +69 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource.rb +176 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_list_result.rb +98 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties.rb +110 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties_offer_detail.rb +99 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties_user_detail.rb +68 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_update.rb +54 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/provision_state.rb +23 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/resource_provider_default_error_response.rb +50 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/saa_soffer_status.rb +24 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/user_detail.rb +77 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/module_definition.rb +9 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/organization.rb +899 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/organization_operations.rb +219 -0
- data/lib/azure_mgmt_confluent.rb +6 -0
- data/lib/module_definition.rb +7 -0
- data/lib/profiles/latest/confluent_latest_profile_client.rb +40 -0
- data/lib/profiles/latest/confluent_module_definition.rb +8 -0
- data/lib/profiles/latest/modules/confluent_profile_module.rb +133 -0
- data/lib/version.rb +7 -0
- metadata +147 -0
@@ -0,0 +1,110 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Organization resource property
|
10
|
+
#
|
11
|
+
class OrganizationResourceProperties
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [DateTime] The creation time of the resource.
|
16
|
+
attr_accessor :created_time
|
17
|
+
|
18
|
+
# @return [ProvisionState] Provision states for confluent RP. Possible
|
19
|
+
# values include: 'Accepted', 'Creating', 'Updating', 'Deleting',
|
20
|
+
# 'Succeeded', 'Failed', 'Canceled', 'Deleted', 'NotSpecified'
|
21
|
+
attr_accessor :provisioning_state
|
22
|
+
|
23
|
+
# @return [String] Id of the Confluent organization.
|
24
|
+
attr_accessor :organization_id
|
25
|
+
|
26
|
+
# @return [String] SSO url for the Confluent organization.
|
27
|
+
attr_accessor :sso_url
|
28
|
+
|
29
|
+
# @return [OrganizationResourcePropertiesOfferDetail] Confluent offer
|
30
|
+
# detail
|
31
|
+
attr_accessor :offer_detail
|
32
|
+
|
33
|
+
# @return [OrganizationResourcePropertiesUserDetail] Subscriber detail
|
34
|
+
attr_accessor :user_detail
|
35
|
+
|
36
|
+
|
37
|
+
#
|
38
|
+
# Mapper for OrganizationResourceProperties class as Ruby Hash.
|
39
|
+
# This will be used for serialization/deserialization.
|
40
|
+
#
|
41
|
+
def self.mapper()
|
42
|
+
{
|
43
|
+
client_side_validation: true,
|
44
|
+
required: false,
|
45
|
+
serialized_name: 'OrganizationResourceProperties',
|
46
|
+
type: {
|
47
|
+
name: 'Composite',
|
48
|
+
class_name: 'OrganizationResourceProperties',
|
49
|
+
model_properties: {
|
50
|
+
created_time: {
|
51
|
+
client_side_validation: true,
|
52
|
+
required: false,
|
53
|
+
read_only: true,
|
54
|
+
serialized_name: 'createdTime',
|
55
|
+
type: {
|
56
|
+
name: 'DateTime'
|
57
|
+
}
|
58
|
+
},
|
59
|
+
provisioning_state: {
|
60
|
+
client_side_validation: true,
|
61
|
+
required: false,
|
62
|
+
read_only: true,
|
63
|
+
serialized_name: 'provisioningState',
|
64
|
+
type: {
|
65
|
+
name: 'String'
|
66
|
+
}
|
67
|
+
},
|
68
|
+
organization_id: {
|
69
|
+
client_side_validation: true,
|
70
|
+
required: false,
|
71
|
+
read_only: true,
|
72
|
+
serialized_name: 'organizationId',
|
73
|
+
type: {
|
74
|
+
name: 'String'
|
75
|
+
}
|
76
|
+
},
|
77
|
+
sso_url: {
|
78
|
+
client_side_validation: true,
|
79
|
+
required: false,
|
80
|
+
read_only: true,
|
81
|
+
serialized_name: 'ssoUrl',
|
82
|
+
type: {
|
83
|
+
name: 'String'
|
84
|
+
}
|
85
|
+
},
|
86
|
+
offer_detail: {
|
87
|
+
client_side_validation: true,
|
88
|
+
required: false,
|
89
|
+
serialized_name: 'offerDetail',
|
90
|
+
type: {
|
91
|
+
name: 'Composite',
|
92
|
+
class_name: 'OrganizationResourcePropertiesOfferDetail'
|
93
|
+
}
|
94
|
+
},
|
95
|
+
user_detail: {
|
96
|
+
client_side_validation: true,
|
97
|
+
required: false,
|
98
|
+
serialized_name: 'userDetail',
|
99
|
+
type: {
|
100
|
+
name: 'Composite',
|
101
|
+
class_name: 'OrganizationResourcePropertiesUserDetail'
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Confluent offer detail
|
10
|
+
#
|
11
|
+
class OrganizationResourcePropertiesOfferDetail < OfferDetail
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
|
16
|
+
#
|
17
|
+
# Mapper for OrganizationResourcePropertiesOfferDetail class as Ruby
|
18
|
+
# Hash.
|
19
|
+
# This will be used for serialization/deserialization.
|
20
|
+
#
|
21
|
+
def self.mapper()
|
22
|
+
{
|
23
|
+
client_side_validation: true,
|
24
|
+
required: false,
|
25
|
+
serialized_name: 'OrganizationResourceProperties_offerDetail',
|
26
|
+
type: {
|
27
|
+
name: 'Composite',
|
28
|
+
class_name: 'OrganizationResourcePropertiesOfferDetail',
|
29
|
+
model_properties: {
|
30
|
+
publisher_id: {
|
31
|
+
client_side_validation: true,
|
32
|
+
required: false,
|
33
|
+
serialized_name: 'publisherId',
|
34
|
+
constraints: {
|
35
|
+
MaxLength: 50
|
36
|
+
},
|
37
|
+
type: {
|
38
|
+
name: 'String'
|
39
|
+
}
|
40
|
+
},
|
41
|
+
id: {
|
42
|
+
client_side_validation: true,
|
43
|
+
required: false,
|
44
|
+
serialized_name: 'id',
|
45
|
+
constraints: {
|
46
|
+
MaxLength: 50
|
47
|
+
},
|
48
|
+
type: {
|
49
|
+
name: 'String'
|
50
|
+
}
|
51
|
+
},
|
52
|
+
plan_id: {
|
53
|
+
client_side_validation: true,
|
54
|
+
required: false,
|
55
|
+
serialized_name: 'planId',
|
56
|
+
constraints: {
|
57
|
+
MaxLength: 50
|
58
|
+
},
|
59
|
+
type: {
|
60
|
+
name: 'String'
|
61
|
+
}
|
62
|
+
},
|
63
|
+
plan_name: {
|
64
|
+
client_side_validation: true,
|
65
|
+
required: false,
|
66
|
+
serialized_name: 'planName',
|
67
|
+
constraints: {
|
68
|
+
MaxLength: 50
|
69
|
+
},
|
70
|
+
type: {
|
71
|
+
name: 'String'
|
72
|
+
}
|
73
|
+
},
|
74
|
+
term_unit: {
|
75
|
+
client_side_validation: true,
|
76
|
+
required: false,
|
77
|
+
serialized_name: 'termUnit',
|
78
|
+
constraints: {
|
79
|
+
MaxLength: 25
|
80
|
+
},
|
81
|
+
type: {
|
82
|
+
name: 'String'
|
83
|
+
}
|
84
|
+
},
|
85
|
+
status: {
|
86
|
+
client_side_validation: true,
|
87
|
+
required: false,
|
88
|
+
serialized_name: 'status',
|
89
|
+
type: {
|
90
|
+
name: 'String'
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
}
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Subscriber detail
|
10
|
+
#
|
11
|
+
class OrganizationResourcePropertiesUserDetail < UserDetail
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
|
16
|
+
#
|
17
|
+
# Mapper for OrganizationResourcePropertiesUserDetail class as Ruby Hash.
|
18
|
+
# This will be used for serialization/deserialization.
|
19
|
+
#
|
20
|
+
def self.mapper()
|
21
|
+
{
|
22
|
+
client_side_validation: true,
|
23
|
+
required: false,
|
24
|
+
serialized_name: 'OrganizationResourceProperties_userDetail',
|
25
|
+
type: {
|
26
|
+
name: 'Composite',
|
27
|
+
class_name: 'OrganizationResourcePropertiesUserDetail',
|
28
|
+
model_properties: {
|
29
|
+
first_name: {
|
30
|
+
client_side_validation: true,
|
31
|
+
required: false,
|
32
|
+
serialized_name: 'firstName',
|
33
|
+
constraints: {
|
34
|
+
MaxLength: 50
|
35
|
+
},
|
36
|
+
type: {
|
37
|
+
name: 'String'
|
38
|
+
}
|
39
|
+
},
|
40
|
+
last_name: {
|
41
|
+
client_side_validation: true,
|
42
|
+
required: false,
|
43
|
+
serialized_name: 'lastName',
|
44
|
+
constraints: {
|
45
|
+
MaxLength: 50
|
46
|
+
},
|
47
|
+
type: {
|
48
|
+
name: 'String'
|
49
|
+
}
|
50
|
+
},
|
51
|
+
email_address: {
|
52
|
+
client_side_validation: true,
|
53
|
+
required: false,
|
54
|
+
serialized_name: 'emailAddress',
|
55
|
+
constraints: {
|
56
|
+
Pattern: '\S+@\S+\.\S+'
|
57
|
+
},
|
58
|
+
type: {
|
59
|
+
name: 'String'
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Organization Resource update
|
10
|
+
#
|
11
|
+
class OrganizationResourceUpdate
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [Hash{String => String}] ARM resource tags
|
16
|
+
attr_accessor :tags
|
17
|
+
|
18
|
+
|
19
|
+
#
|
20
|
+
# Mapper for OrganizationResourceUpdate class as Ruby Hash.
|
21
|
+
# This will be used for serialization/deserialization.
|
22
|
+
#
|
23
|
+
def self.mapper()
|
24
|
+
{
|
25
|
+
client_side_validation: true,
|
26
|
+
required: false,
|
27
|
+
serialized_name: 'OrganizationResourceUpdate',
|
28
|
+
type: {
|
29
|
+
name: 'Composite',
|
30
|
+
class_name: 'OrganizationResourceUpdate',
|
31
|
+
model_properties: {
|
32
|
+
tags: {
|
33
|
+
client_side_validation: true,
|
34
|
+
required: false,
|
35
|
+
serialized_name: 'tags',
|
36
|
+
type: {
|
37
|
+
name: 'Dictionary',
|
38
|
+
value: {
|
39
|
+
client_side_validation: true,
|
40
|
+
required: false,
|
41
|
+
serialized_name: 'StringElementType',
|
42
|
+
type: {
|
43
|
+
name: 'String'
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Defines values for ProvisionState
|
10
|
+
#
|
11
|
+
module ProvisionState
|
12
|
+
Accepted = "Accepted"
|
13
|
+
Creating = "Creating"
|
14
|
+
Updating = "Updating"
|
15
|
+
Deleting = "Deleting"
|
16
|
+
Succeeded = "Succeeded"
|
17
|
+
Failed = "Failed"
|
18
|
+
Canceled = "Canceled"
|
19
|
+
Deleted = "Deleted"
|
20
|
+
NotSpecified = "NotSpecified"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# ResourceProviderDefaultErrorResponse
|
10
|
+
|
11
|
+
# Default error response for resource provider
|
12
|
+
#
|
13
|
+
class ResourceProviderDefaultErrorResponse
|
14
|
+
|
15
|
+
include MsRestAzure
|
16
|
+
|
17
|
+
# @return [ErrorResponseBody] Response body of Error
|
18
|
+
attr_accessor :error
|
19
|
+
|
20
|
+
|
21
|
+
#
|
22
|
+
# Mapper for ResourceProviderDefaultErrorResponse class as Ruby Hash.
|
23
|
+
# This will be used for serialization/deserialization.
|
24
|
+
#
|
25
|
+
def self.mapper()
|
26
|
+
{
|
27
|
+
client_side_validation: true,
|
28
|
+
required: false,
|
29
|
+
serialized_name: 'ResourceProviderDefaultErrorResponse',
|
30
|
+
type: {
|
31
|
+
name: 'Composite',
|
32
|
+
class_name: 'ResourceProviderDefaultErrorResponse',
|
33
|
+
model_properties: {
|
34
|
+
error: {
|
35
|
+
client_side_validation: true,
|
36
|
+
required: false,
|
37
|
+
read_only: true,
|
38
|
+
serialized_name: 'error',
|
39
|
+
type: {
|
40
|
+
name: 'Composite',
|
41
|
+
class_name: 'ErrorResponseBody'
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Defines values for SaaSOfferStatus
|
10
|
+
#
|
11
|
+
module SaaSOfferStatus
|
12
|
+
Started = "Started"
|
13
|
+
PendingFulfillmentStart = "PendingFulfillmentStart"
|
14
|
+
InProgress = "InProgress"
|
15
|
+
Subscribed = "Subscribed"
|
16
|
+
Suspended = "Suspended"
|
17
|
+
Reinstated = "Reinstated"
|
18
|
+
Succeeded = "Succeeded"
|
19
|
+
Failed = "Failed"
|
20
|
+
Unsubscribed = "Unsubscribed"
|
21
|
+
Updating = "Updating"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::Confluent::Mgmt::V2020_03_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Subscriber detail
|
10
|
+
#
|
11
|
+
class UserDetail
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] First name
|
16
|
+
attr_accessor :first_name
|
17
|
+
|
18
|
+
# @return [String] Last name
|
19
|
+
attr_accessor :last_name
|
20
|
+
|
21
|
+
# @return [String] Email address
|
22
|
+
attr_accessor :email_address
|
23
|
+
|
24
|
+
|
25
|
+
#
|
26
|
+
# Mapper for UserDetail class as Ruby Hash.
|
27
|
+
# This will be used for serialization/deserialization.
|
28
|
+
#
|
29
|
+
def self.mapper()
|
30
|
+
{
|
31
|
+
client_side_validation: true,
|
32
|
+
required: false,
|
33
|
+
serialized_name: 'UserDetail',
|
34
|
+
type: {
|
35
|
+
name: 'Composite',
|
36
|
+
class_name: 'UserDetail',
|
37
|
+
model_properties: {
|
38
|
+
first_name: {
|
39
|
+
client_side_validation: true,
|
40
|
+
required: false,
|
41
|
+
serialized_name: 'firstName',
|
42
|
+
constraints: {
|
43
|
+
MaxLength: 50
|
44
|
+
},
|
45
|
+
type: {
|
46
|
+
name: 'String'
|
47
|
+
}
|
48
|
+
},
|
49
|
+
last_name: {
|
50
|
+
client_side_validation: true,
|
51
|
+
required: false,
|
52
|
+
serialized_name: 'lastName',
|
53
|
+
constraints: {
|
54
|
+
MaxLength: 50
|
55
|
+
},
|
56
|
+
type: {
|
57
|
+
name: 'String'
|
58
|
+
}
|
59
|
+
},
|
60
|
+
email_address: {
|
61
|
+
client_side_validation: true,
|
62
|
+
required: false,
|
63
|
+
serialized_name: 'emailAddress',
|
64
|
+
constraints: {
|
65
|
+
Pattern: '\S+@\S+\.\S+'
|
66
|
+
},
|
67
|
+
type: {
|
68
|
+
name: 'String'
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|