Lines Matching refs:jsonValue

38   JsonView jsonValue = result.GetPayload().View();  in operator =()  local
39 if(jsonValue.ValueExists("EndpointName")) in operator =()
41 m_endpointName = jsonValue.GetString("EndpointName"); in operator =()
45 if(jsonValue.ValueExists("Status")) in operator =()
47 m_status = jsonValue.GetString("Status"); in operator =()
51 if(jsonValue.ValueExists("SecurityGroupIds")) in operator =()
53 Array<JsonView> securityGroupIdsJsonList = jsonValue.GetArray("SecurityGroupIds"); in operator =()
60 if(jsonValue.ValueExists("SubnetId")) in operator =()
62 m_subnetId = jsonValue.GetString("SubnetId"); in operator =()
66 if(jsonValue.ValueExists("RoleArn")) in operator =()
68 m_roleArn = jsonValue.GetString("RoleArn"); in operator =()
72 if(jsonValue.ValueExists("YarnEndpointAddress")) in operator =()
74 m_yarnEndpointAddress = jsonValue.GetString("YarnEndpointAddress"); in operator =()
78 if(jsonValue.ValueExists("ZeppelinRemoteSparkInterpreterPort")) in operator =()
80 … m_zeppelinRemoteSparkInterpreterPort = jsonValue.GetInteger("ZeppelinRemoteSparkInterpreterPort"); in operator =()
84 if(jsonValue.ValueExists("NumberOfNodes")) in operator =()
86 m_numberOfNodes = jsonValue.GetInteger("NumberOfNodes"); in operator =()
90 if(jsonValue.ValueExists("WorkerType")) in operator =()
92 m_workerType = WorkerTypeMapper::GetWorkerTypeForName(jsonValue.GetString("WorkerType")); in operator =()
96 if(jsonValue.ValueExists("GlueVersion")) in operator =()
98 m_glueVersion = jsonValue.GetString("GlueVersion"); in operator =()
102 if(jsonValue.ValueExists("NumberOfWorkers")) in operator =()
104 m_numberOfWorkers = jsonValue.GetInteger("NumberOfWorkers"); in operator =()
108 if(jsonValue.ValueExists("AvailabilityZone")) in operator =()
110 m_availabilityZone = jsonValue.GetString("AvailabilityZone"); in operator =()
114 if(jsonValue.ValueExists("VpcId")) in operator =()
116 m_vpcId = jsonValue.GetString("VpcId"); in operator =()
120 if(jsonValue.ValueExists("ExtraPythonLibsS3Path")) in operator =()
122 m_extraPythonLibsS3Path = jsonValue.GetString("ExtraPythonLibsS3Path"); in operator =()
126 if(jsonValue.ValueExists("ExtraJarsS3Path")) in operator =()
128 m_extraJarsS3Path = jsonValue.GetString("ExtraJarsS3Path"); in operator =()
132 if(jsonValue.ValueExists("FailureReason")) in operator =()
134 m_failureReason = jsonValue.GetString("FailureReason"); in operator =()
138 if(jsonValue.ValueExists("SecurityConfiguration")) in operator =()
140 m_securityConfiguration = jsonValue.GetString("SecurityConfiguration"); in operator =()
144 if(jsonValue.ValueExists("CreatedTimestamp")) in operator =()
146 m_createdTimestamp = jsonValue.GetDouble("CreatedTimestamp"); in operator =()
150 if(jsonValue.ValueExists("Arguments")) in operator =()
152 …Aws::Map<Aws::String, JsonView> argumentsJsonMap = jsonValue.GetObject("Arguments").GetAllObjects(… in operator =()