azure_mgmt_hdinsight 0.17.2 → 0.17.3
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 +5 -5
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/clusters.rb +229 -0
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/configurations.rb +118 -16
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/hdinsight_management_client.rb +1 -1
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/cluster_configurations.rb +63 -0
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/gateway_settings.rb +72 -0
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/update_gateway_settings_parameters.rb +70 -0
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight.rb +32 -29
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/clusters.rb +229 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/configurations.rb +109 -7
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/hdinsight_management_client.rb +1 -1
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_configurations.rb +63 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/gateway_settings.rb +72 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/update_gateway_settings_parameters.rb +70 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight.rb +29 -26
- data/lib/profiles/latest/modules/hdinsight_profile_module.rb +94 -82
- data/lib/version.rb +1 -1
- metadata +9 -3
@@ -0,0 +1,70 @@
|
|
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::Hdinsight::Mgmt::V2018_06_01_preview
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The update gateway settings request parameters.
|
10
|
+
#
|
11
|
+
class UpdateGatewaySettingsParameters
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [Boolean] Indicates whether or not the gateway settings based
|
16
|
+
# authorization is enabled. Default value: true .
|
17
|
+
attr_accessor :is_credential_enabled
|
18
|
+
|
19
|
+
# @return [String] The gateway settings user name.
|
20
|
+
attr_accessor :user_name
|
21
|
+
|
22
|
+
# @return [String] The gateway settings user password.
|
23
|
+
attr_accessor :password
|
24
|
+
|
25
|
+
|
26
|
+
#
|
27
|
+
# Mapper for UpdateGatewaySettingsParameters class as Ruby Hash.
|
28
|
+
# This will be used for serialization/deserialization.
|
29
|
+
#
|
30
|
+
def self.mapper()
|
31
|
+
{
|
32
|
+
client_side_validation: true,
|
33
|
+
required: false,
|
34
|
+
serialized_name: 'UpdateGatewaySettingsParameters',
|
35
|
+
type: {
|
36
|
+
name: 'Composite',
|
37
|
+
class_name: 'UpdateGatewaySettingsParameters',
|
38
|
+
model_properties: {
|
39
|
+
is_credential_enabled: {
|
40
|
+
client_side_validation: true,
|
41
|
+
required: false,
|
42
|
+
serialized_name: 'restAuthCredential\\.isEnabled',
|
43
|
+
default_value: true,
|
44
|
+
type: {
|
45
|
+
name: 'Boolean'
|
46
|
+
}
|
47
|
+
},
|
48
|
+
user_name: {
|
49
|
+
client_side_validation: true,
|
50
|
+
required: false,
|
51
|
+
serialized_name: 'restAuthCredential\\.username',
|
52
|
+
type: {
|
53
|
+
name: 'String'
|
54
|
+
}
|
55
|
+
},
|
56
|
+
password: {
|
57
|
+
client_side_validation: true,
|
58
|
+
required: false,
|
59
|
+
serialized_name: 'restAuthCredential\\.password',
|
60
|
+
type: {
|
61
|
+
name: 'String'
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -31,56 +31,59 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
31
31
|
autoload :HDInsightManagementClient, '2018-06-01-preview/generated/azure_mgmt_hdinsight/hdinsight_management_client.rb'
|
32
32
|
|
33
33
|
module Models
|
34
|
-
autoload :ScriptActionExecutionSummary, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_action_execution_summary.rb'
|
35
|
-
autoload :ClusterDefinition, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_definition.rb'
|
36
34
|
autoload :ClusterListPersistedScriptActionsResult, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_list_persisted_script_actions_result.rb'
|
37
|
-
autoload :
|
35
|
+
autoload :ScriptActionExecutionSummary, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_action_execution_summary.rb'
|
38
36
|
autoload :SecurityProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb'
|
39
|
-
autoload :
|
40
|
-
autoload :SshProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_profile.rb'
|
37
|
+
autoload :VirtualNetworkProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/virtual_network_profile.rb'
|
41
38
|
autoload :ClusterListRuntimeScriptActionDetailResult, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_list_runtime_script_action_detail_result.rb'
|
42
|
-
autoload :
|
39
|
+
autoload :SshPublicKey, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_public_key.rb'
|
43
40
|
autoload :ClusterListResult, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_list_result.rb'
|
44
|
-
autoload :
|
41
|
+
autoload :LinuxOperatingSystemProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/linux_operating_system_profile.rb'
|
45
42
|
autoload :ClusterResizeParameters, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_resize_parameters.rb'
|
46
|
-
autoload :
|
43
|
+
autoload :ScriptAction, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_action.rb'
|
47
44
|
autoload :ClusterDiskEncryptionParameters, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_disk_encryption_parameters.rb'
|
48
|
-
autoload :
|
45
|
+
autoload :ComputeProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/compute_profile.rb'
|
46
|
+
autoload :UpdateGatewaySettingsParameters, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/update_gateway_settings_parameters.rb'
|
47
|
+
autoload :StorageProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_profile.rb'
|
48
|
+
autoload :GatewaySettings, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/gateway_settings.rb'
|
49
|
+
autoload :ClusterCreateProperties, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_create_properties.rb'
|
49
50
|
autoload :OperationResource, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/operation_resource.rb'
|
50
|
-
autoload :
|
51
|
+
autoload :ClusterIdentity, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity.rb'
|
51
52
|
autoload :Resource, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/resource.rb'
|
52
|
-
autoload :
|
53
|
+
autoload :ClusterPatchParameters, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_patch_parameters.rb'
|
53
54
|
autoload :OperationListResult, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/operation_list_result.rb'
|
54
|
-
autoload :
|
55
|
+
autoload :Errors, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/errors.rb'
|
55
56
|
autoload :Operation, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/operation.rb'
|
56
|
-
autoload :
|
57
|
+
autoload :ClusterGetProperties, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_get_properties.rb'
|
57
58
|
autoload :ErrorResponse, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/error_response.rb'
|
58
|
-
autoload :ScriptActionsList, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_actions_list.rb'
|
59
59
|
autoload :RuntimeScriptAction, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/runtime_script_action.rb'
|
60
60
|
autoload :ApplicationGetHttpsEndpoint, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb'
|
61
|
-
autoload :
|
61
|
+
autoload :ClusterDefinition, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_definition.rb'
|
62
62
|
autoload :ApplicationGetEndpoint, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_endpoint.rb'
|
63
|
-
autoload :
|
63
|
+
autoload :DataDisksGroups, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/data_disks_groups.rb'
|
64
64
|
autoload :ApplicationProperties, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_properties.rb'
|
65
|
-
autoload :
|
65
|
+
autoload :OsProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/os_profile.rb'
|
66
66
|
autoload :OperationDisplay, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/operation_display.rb'
|
67
|
-
autoload :
|
67
|
+
autoload :StorageAccount, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb'
|
68
68
|
autoload :ApplicationListResult, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_list_result.rb'
|
69
|
-
autoload :
|
69
|
+
autoload :ClusterIdentityUserAssignedIdentitiesValue, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity_user_assigned_identities_value.rb'
|
70
70
|
autoload :LocalizedName, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/localized_name.rb'
|
71
|
-
autoload :
|
71
|
+
autoload :QuotaInfo, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/quota_info.rb'
|
72
72
|
autoload :Usage, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/usage.rb'
|
73
|
-
autoload :
|
73
|
+
autoload :ScriptActionsList, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_actions_list.rb'
|
74
|
+
autoload :ExecuteScriptActionParameters, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/execute_script_action_parameters.rb'
|
74
75
|
autoload :UsagesListResult, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/usages_list_result.rb'
|
75
|
-
autoload :
|
76
|
+
autoload :SshProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_profile.rb'
|
77
|
+
autoload :ClusterConfigurations, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_configurations.rb'
|
78
|
+
autoload :DiskEncryptionProperties, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/disk_encryption_properties.rb'
|
76
79
|
autoload :Extension, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb'
|
77
|
-
autoload :
|
80
|
+
autoload :ConnectivityEndpoint, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/connectivity_endpoint.rb'
|
78
81
|
autoload :ClusterMonitoringResponse, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_monitoring_response.rb'
|
79
|
-
autoload :
|
82
|
+
autoload :Role, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/role.rb'
|
80
83
|
autoload :ClusterMonitoringRequest, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_monitoring_request.rb'
|
81
|
-
autoload :
|
84
|
+
autoload :HardwareProfile, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/hardware_profile.rb'
|
82
85
|
autoload :ScriptActionExecutionHistoryList, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_action_execution_history_list.rb'
|
83
|
-
autoload :
|
86
|
+
autoload :ClusterCreateParametersExtended, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_create_parameters_extended.rb'
|
84
87
|
autoload :ScriptActionPersistedGetResponseSpec, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_action_persisted_get_response_spec.rb'
|
85
88
|
autoload :Cluster, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster.rb'
|
86
89
|
autoload :RuntimeScriptActionDetail, '2018-06-01-preview/generated/azure_mgmt_hdinsight/models/runtime_script_action_detail.rb'
|
@@ -16,56 +16,59 @@ module Azure::Hdinsight::Profiles::Latest
|
|
16
16
|
Operations = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Operations
|
17
17
|
|
18
18
|
module Models
|
19
|
-
ScriptActionExecutionSummary = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionSummary
|
20
|
-
ClusterDefinition = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDefinition
|
21
19
|
ClusterListPersistedScriptActionsResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListPersistedScriptActionsResult
|
22
|
-
|
20
|
+
ScriptActionExecutionSummary = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionSummary
|
23
21
|
SecurityProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SecurityProfile
|
24
|
-
|
25
|
-
SshProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
|
22
|
+
VirtualNetworkProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::VirtualNetworkProfile
|
26
23
|
ClusterListRuntimeScriptActionDetailResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListRuntimeScriptActionDetailResult
|
27
|
-
|
24
|
+
SshPublicKey = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshPublicKey
|
28
25
|
ClusterListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListResult
|
29
|
-
|
26
|
+
LinuxOperatingSystemProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LinuxOperatingSystemProfile
|
30
27
|
ClusterResizeParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterResizeParameters
|
31
|
-
|
28
|
+
ScriptAction = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptAction
|
32
29
|
ClusterDiskEncryptionParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDiskEncryptionParameters
|
33
|
-
|
30
|
+
ComputeProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ComputeProfile
|
31
|
+
UpdateGatewaySettingsParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::UpdateGatewaySettingsParameters
|
32
|
+
StorageProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageProfile
|
33
|
+
GatewaySettings = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::GatewaySettings
|
34
|
+
ClusterCreateProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateProperties
|
34
35
|
OperationResource = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationResource
|
35
|
-
|
36
|
+
ClusterIdentity = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentity
|
36
37
|
Resource = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Resource
|
37
|
-
|
38
|
+
ClusterPatchParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterPatchParameters
|
38
39
|
OperationListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationListResult
|
39
|
-
|
40
|
+
Errors = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Errors
|
40
41
|
Operation = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Operation
|
41
|
-
|
42
|
+
ClusterGetProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterGetProperties
|
42
43
|
ErrorResponse = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ErrorResponse
|
43
|
-
ScriptActionsList = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionsList
|
44
44
|
RuntimeScriptAction = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::RuntimeScriptAction
|
45
45
|
ApplicationGetHttpsEndpoint = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint
|
46
|
-
|
46
|
+
ClusterDefinition = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDefinition
|
47
47
|
ApplicationGetEndpoint = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetEndpoint
|
48
|
-
|
48
|
+
DataDisksGroups = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DataDisksGroups
|
49
49
|
ApplicationProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationProperties
|
50
|
-
|
50
|
+
OsProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OsProfile
|
51
51
|
OperationDisplay = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationDisplay
|
52
|
-
|
52
|
+
StorageAccount = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageAccount
|
53
53
|
ApplicationListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationListResult
|
54
|
-
|
54
|
+
ClusterIdentityUserAssignedIdentitiesValue = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentityUserAssignedIdentitiesValue
|
55
55
|
LocalizedName = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LocalizedName
|
56
|
-
|
56
|
+
QuotaInfo = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::QuotaInfo
|
57
57
|
Usage = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Usage
|
58
|
-
|
58
|
+
ScriptActionsList = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionsList
|
59
|
+
ExecuteScriptActionParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ExecuteScriptActionParameters
|
59
60
|
UsagesListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::UsagesListResult
|
60
|
-
|
61
|
+
SshProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
|
62
|
+
ClusterConfigurations = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterConfigurations
|
63
|
+
DiskEncryptionProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DiskEncryptionProperties
|
61
64
|
Extension = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Extension
|
62
|
-
|
65
|
+
ConnectivityEndpoint = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ConnectivityEndpoint
|
63
66
|
ClusterMonitoringResponse = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringResponse
|
64
|
-
|
67
|
+
Role = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Role
|
65
68
|
ClusterMonitoringRequest = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringRequest
|
66
|
-
|
69
|
+
HardwareProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::HardwareProfile
|
67
70
|
ScriptActionExecutionHistoryList = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionHistoryList
|
68
|
-
|
71
|
+
ClusterCreateParametersExtended = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateParametersExtended
|
69
72
|
ScriptActionPersistedGetResponseSpec = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionPersistedGetResponseSpec
|
70
73
|
Cluster = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Cluster
|
71
74
|
RuntimeScriptActionDetail = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::RuntimeScriptActionDetail
|
@@ -133,155 +136,164 @@ module Azure::Hdinsight::Profiles::Latest
|
|
133
136
|
end
|
134
137
|
|
135
138
|
class ModelClasses
|
136
|
-
def script_action_execution_summary
|
137
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionSummary
|
138
|
-
end
|
139
|
-
def cluster_definition
|
140
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDefinition
|
141
|
-
end
|
142
139
|
def cluster_list_persisted_script_actions_result
|
143
140
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListPersistedScriptActionsResult
|
144
141
|
end
|
145
|
-
def
|
146
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
142
|
+
def script_action_execution_summary
|
143
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionSummary
|
147
144
|
end
|
148
145
|
def security_profile
|
149
146
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SecurityProfile
|
150
147
|
end
|
151
|
-
def
|
152
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
153
|
-
end
|
154
|
-
def ssh_profile
|
155
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
|
148
|
+
def virtual_network_profile
|
149
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::VirtualNetworkProfile
|
156
150
|
end
|
157
151
|
def cluster_list_runtime_script_action_detail_result
|
158
152
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListRuntimeScriptActionDetailResult
|
159
153
|
end
|
160
|
-
def
|
161
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
154
|
+
def ssh_public_key
|
155
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshPublicKey
|
162
156
|
end
|
163
157
|
def cluster_list_result
|
164
158
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListResult
|
165
159
|
end
|
166
|
-
def
|
167
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
160
|
+
def linux_operating_system_profile
|
161
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LinuxOperatingSystemProfile
|
168
162
|
end
|
169
163
|
def cluster_resize_parameters
|
170
164
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterResizeParameters
|
171
165
|
end
|
172
|
-
def
|
173
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
166
|
+
def script_action
|
167
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptAction
|
174
168
|
end
|
175
169
|
def cluster_disk_encryption_parameters
|
176
170
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDiskEncryptionParameters
|
177
171
|
end
|
178
|
-
def
|
179
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
172
|
+
def compute_profile
|
173
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ComputeProfile
|
174
|
+
end
|
175
|
+
def update_gateway_settings_parameters
|
176
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::UpdateGatewaySettingsParameters
|
177
|
+
end
|
178
|
+
def storage_profile
|
179
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageProfile
|
180
|
+
end
|
181
|
+
def gateway_settings
|
182
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::GatewaySettings
|
183
|
+
end
|
184
|
+
def cluster_create_properties
|
185
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateProperties
|
180
186
|
end
|
181
187
|
def operation_resource
|
182
188
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationResource
|
183
189
|
end
|
184
|
-
def
|
185
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
190
|
+
def cluster_identity
|
191
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentity
|
186
192
|
end
|
187
193
|
def resource
|
188
194
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Resource
|
189
195
|
end
|
190
|
-
def
|
191
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
196
|
+
def cluster_patch_parameters
|
197
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterPatchParameters
|
192
198
|
end
|
193
199
|
def operation_list_result
|
194
200
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationListResult
|
195
201
|
end
|
196
|
-
def
|
197
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
202
|
+
def errors
|
203
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Errors
|
198
204
|
end
|
199
205
|
def operation
|
200
206
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Operation
|
201
207
|
end
|
202
|
-
def
|
203
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
208
|
+
def cluster_get_properties
|
209
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterGetProperties
|
204
210
|
end
|
205
211
|
def error_response
|
206
212
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ErrorResponse
|
207
213
|
end
|
208
|
-
def script_actions_list
|
209
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionsList
|
210
|
-
end
|
211
214
|
def runtime_script_action
|
212
215
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::RuntimeScriptAction
|
213
216
|
end
|
214
217
|
def application_get_https_endpoint
|
215
218
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint
|
216
219
|
end
|
217
|
-
def
|
218
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
220
|
+
def cluster_definition
|
221
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDefinition
|
219
222
|
end
|
220
223
|
def application_get_endpoint
|
221
224
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetEndpoint
|
222
225
|
end
|
223
|
-
def
|
224
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
226
|
+
def data_disks_groups
|
227
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DataDisksGroups
|
225
228
|
end
|
226
229
|
def application_properties
|
227
230
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationProperties
|
228
231
|
end
|
229
|
-
def
|
230
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
232
|
+
def os_profile
|
233
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OsProfile
|
231
234
|
end
|
232
235
|
def operation_display
|
233
236
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationDisplay
|
234
237
|
end
|
235
|
-
def
|
236
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
238
|
+
def storage_account
|
239
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageAccount
|
237
240
|
end
|
238
241
|
def application_list_result
|
239
242
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationListResult
|
240
243
|
end
|
241
|
-
def
|
242
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
244
|
+
def cluster_identity_user_assigned_identities_value
|
245
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentityUserAssignedIdentitiesValue
|
243
246
|
end
|
244
247
|
def localized_name
|
245
248
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LocalizedName
|
246
249
|
end
|
247
|
-
def
|
248
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
250
|
+
def quota_info
|
251
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::QuotaInfo
|
249
252
|
end
|
250
253
|
def usage
|
251
254
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Usage
|
252
255
|
end
|
253
|
-
def
|
254
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
256
|
+
def script_actions_list
|
257
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionsList
|
258
|
+
end
|
259
|
+
def execute_script_action_parameters
|
260
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ExecuteScriptActionParameters
|
255
261
|
end
|
256
262
|
def usages_list_result
|
257
263
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::UsagesListResult
|
258
264
|
end
|
259
|
-
def
|
260
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
265
|
+
def ssh_profile
|
266
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
|
267
|
+
end
|
268
|
+
def cluster_configurations
|
269
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterConfigurations
|
270
|
+
end
|
271
|
+
def disk_encryption_properties
|
272
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DiskEncryptionProperties
|
261
273
|
end
|
262
274
|
def extension
|
263
275
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Extension
|
264
276
|
end
|
265
|
-
def
|
266
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
277
|
+
def connectivity_endpoint
|
278
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ConnectivityEndpoint
|
267
279
|
end
|
268
280
|
def cluster_monitoring_response
|
269
281
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringResponse
|
270
282
|
end
|
271
|
-
def
|
272
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
283
|
+
def role
|
284
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Role
|
273
285
|
end
|
274
286
|
def cluster_monitoring_request
|
275
287
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringRequest
|
276
288
|
end
|
277
|
-
def
|
278
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
289
|
+
def hardware_profile
|
290
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::HardwareProfile
|
279
291
|
end
|
280
292
|
def script_action_execution_history_list
|
281
293
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionHistoryList
|
282
294
|
end
|
283
|
-
def
|
284
|
-
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::
|
295
|
+
def cluster_create_parameters_extended
|
296
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateParametersExtended
|
285
297
|
end
|
286
298
|
def script_action_persisted_get_response_spec
|
287
299
|
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionPersistedGetResponseSpec
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure_mgmt_hdinsight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.
|
4
|
+
version: 0.17.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Microsoft Corporation
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-03
|
11
|
+
date: 2019-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -102,6 +102,7 @@ files:
|
|
102
102
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/async_operation_state.rb
|
103
103
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/capabilities_result.rb
|
104
104
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/cluster.rb
|
105
|
+
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/cluster_configurations.rb
|
105
106
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/cluster_create_parameters_extended.rb
|
106
107
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/cluster_create_properties.rb
|
107
108
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/cluster_definition.rb
|
@@ -125,6 +126,7 @@ files:
|
|
125
126
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/errors.rb
|
126
127
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/execute_script_action_parameters.rb
|
127
128
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb
|
129
|
+
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/gateway_settings.rb
|
128
130
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/hardware_profile.rb
|
129
131
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/hdinsight_cluster_provisioning_state.rb
|
130
132
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/json_web_key_encryption_algorithm.rb
|
@@ -158,6 +160,7 @@ files:
|
|
158
160
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/storage_profile.rb
|
159
161
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/tier.rb
|
160
162
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/tracked_resource.rb
|
163
|
+
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/update_gateway_settings_parameters.rb
|
161
164
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/usage.rb
|
162
165
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/usages_list_result.rb
|
163
166
|
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/version_spec.rb
|
@@ -183,6 +186,7 @@ files:
|
|
183
186
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_properties.rb
|
184
187
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/async_operation_state.rb
|
185
188
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster.rb
|
189
|
+
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_configurations.rb
|
186
190
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_create_parameters_extended.rb
|
187
191
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_create_properties.rb
|
188
192
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_definition.rb
|
@@ -206,6 +210,7 @@ files:
|
|
206
210
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/errors.rb
|
207
211
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/execute_script_action_parameters.rb
|
208
212
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb
|
213
|
+
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/gateway_settings.rb
|
209
214
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/hardware_profile.rb
|
210
215
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/hdinsight_cluster_provisioning_state.rb
|
211
216
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/json_web_key_encryption_algorithm.rb
|
@@ -236,6 +241,7 @@ files:
|
|
236
241
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_profile.rb
|
237
242
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/tier.rb
|
238
243
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/tracked_resource.rb
|
244
|
+
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/update_gateway_settings_parameters.rb
|
239
245
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/usage.rb
|
240
246
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/usages_list_result.rb
|
241
247
|
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/virtual_network_profile.rb
|
@@ -274,7 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
274
280
|
version: '0'
|
275
281
|
requirements: []
|
276
282
|
rubyforge_project:
|
277
|
-
rubygems_version: 2.
|
283
|
+
rubygems_version: 2.5.1
|
278
284
|
signing_key:
|
279
285
|
specification_version: 4
|
280
286
|
summary: Official Ruby client library to consume Microsoft Azure Hdinsight Management
|