@lansweeper/discovery-cloud-proto 0.0.12 → 0.0.13

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.
@@ -1,15 +1,13 @@
1
1
  syntax = "proto3";
2
2
 
3
- import "google/protobuf/wrappers.proto";
4
- import "google/protobuf/any.proto";
5
-
6
- option go_package = "./generated-go";
7
-
8
3
  package com.lansweeper.discovery.cloud.api.v1;
9
4
 
10
- option java_multiple_files = true;
5
+ import "google/protobuf/any.proto";
6
+ import "google/protobuf/wrappers.proto";
11
7
 
12
8
  option csharp_namespace = "Lansweeper.Discovery.Model.Proto.Cloud.Api";
9
+ option go_package = "./generated-go";
10
+ option java_multiple_files = true;
13
11
 
14
12
  /**
15
13
  * Main entry point for cloud assets.
@@ -34,12 +32,35 @@ message CloudEntity {
34
32
  // other relevant fields here if available
35
33
  // for core-field easy mapping, if it makes sense...
36
34
  google.protobuf.Any public_cloud_properties = 8;
35
+ string environment_id = 9;
36
+ string cloud_provider = 10;
37
+ optional string region_id = 11;
38
+ NullableErrorList errors = 12;
39
+ }
40
+
41
+ message NullableErrorList {
42
+ oneof kind {
43
+ ErrorList data = 1;
44
+ }
45
+ }
46
+
47
+ message ErrorList {
48
+ repeated Error items = 1;
49
+ }
50
+
51
+ message Error {
52
+ optional string error_id = 1;
53
+ optional string cfg_n_name = 2;
54
+ optional string error_text = 3;
55
+ optional string last_changed = 4;
56
+ optional string error_type_id = 5;
57
+ optional string error_type_name = 6;
37
58
  }
38
59
 
39
60
  //This file is a first attempt to use protobuf format to send to kafka for ingestion
40
61
  //Content bellow has been generated automatically and will be improved to 'fit' with targeted data model
41
62
  //Serverless application platform for apps and backends.
42
- message GCPAppEngine{
63
+ message GCPAppEngine {
43
64
  repeated ScanningIssues _scanning_issues = 1;
44
65
  google.protobuf.StringValue _a_d_k__name = 2;
45
66
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -56,18 +77,18 @@ message GCPAppEngine{
56
77
  repeated StandardObjectDifference _differences = 14;
57
78
  repeated CDKRule _warnings = 15;
58
79
  }
59
- message ScanningIssues{
80
+ message ScanningIssues {
60
81
  google.protobuf.StringValue _reason = 1;
61
82
  google.protobuf.StringValue _target = 2;
62
83
  google.protobuf.StringValue _solution = 3;
63
84
  repeated TargetProperties _target_properties = 4;
64
85
  }
65
- message TargetProperties{
86
+ message TargetProperties {
66
87
  google.protobuf.StringValue _key = 1;
67
88
  google.protobuf.StringValue _value = 2;
68
89
  }
69
90
  //Serverless application platform for apps and backends.
70
- message GCPAppEngineService{
91
+ message GCPAppEngineService {
71
92
  repeated ScanningIssues _scanning_issues = 1;
72
93
  google.protobuf.StringValue _id = 2;
73
94
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -75,7 +96,7 @@ message GCPAppEngineService{
75
96
  repeated GCPAppEngineVersion _versions = 5;
76
97
  }
77
98
  //Serverless application platform for apps and backends.
78
- message GCPAppEngineVersion{
99
+ message GCPAppEngineVersion {
79
100
  repeated ScanningIssues _scanning_issues = 1;
80
101
  google.protobuf.StringValue _id = 2;
81
102
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -93,7 +114,7 @@ message GCPAppEngineVersion{
93
114
  repeated GCPAppEngineInstance _instances = 15;
94
115
  }
95
116
  //Serverless application platform for apps and backends.
96
- message GCPAppEngineInstance{
117
+ message GCPAppEngineInstance {
97
118
  repeated ScanningIssues _scanning_issues = 1;
98
119
  google.protobuf.StringValue _id = 2;
99
120
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -102,37 +123,37 @@ message GCPAppEngineInstance{
102
123
  google.protobuf.StringValue _vm_ip = 6;
103
124
  google.protobuf.StringValue _vm_status = 7;
104
125
  }
105
- message StandardObjectDifference{
126
+ message StandardObjectDifference {
106
127
  google.protobuf.StringValue _difference_object_name = 1;
107
128
  google.protobuf.StringValue _difference_object_type = 2;
108
- google.protobuf.StringValue _difference_type = 3;//. Possible Values are : Added,Deleted,Changed
129
+ google.protobuf.StringValue _difference_type = 3; //. Possible Values are : Added,Deleted,Changed
109
130
  google.protobuf.StringValue _property_name = 4;
110
131
  google.protobuf.StringValue _old_value = 5;
111
132
  google.protobuf.StringValue _new_value = 6;
112
133
  }
113
- message CDKRule{
134
+ message CDKRule {
114
135
  google.protobuf.StringValue _name = 1;
115
136
  google.protobuf.StringValue _description = 2;
116
137
  google.protobuf.StringValue _message__hyperlink = 3;
117
- google.protobuf.StringValue _criticity = 4;//. Possible Values are : High,Medium,Low
118
- google.protobuf.StringValue _type = 5;//. Possible Values are : Availability,Performance,BestPractice,Security,Billing
138
+ google.protobuf.StringValue _criticity = 4; //. Possible Values are : High,Medium,Low
139
+ google.protobuf.StringValue _type = 5; //. Possible Values are : Availability,Performance,BestPractice,Security,Billing
119
140
  google.protobuf.StringValue _compliance_standards_string = 6;
120
141
  }
121
142
  //A petabyte-scale, fully managed NoSQL database service for large analytical and operational workloads.
122
- message GCPBigtable{
143
+ message GCPBigtable {
123
144
  repeated ScanningIssues _scanning_issues = 1;
124
145
  google.protobuf.StringValue _display_name = 2;
125
146
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
126
147
  google.protobuf.StringValue _name = 4;
127
148
  google.protobuf.StringValue _g_c_p_instance_name_instance_id = 5;
128
- google.protobuf.StringValue _state = 6;//. Possible Values are : NotKnown,Ready,Creating
129
- google.protobuf.StringValue _type = 7;//. Possible Values are : Unspecified,Production,Development
149
+ google.protobuf.StringValue _state = 6; //. Possible Values are : NotKnown,Ready,Creating
150
+ google.protobuf.StringValue _type = 7; //. Possible Values are : Unspecified,Production,Development
130
151
  repeated GCPBigtableCluster _g_c_p_clusters = 8;
131
152
  repeated StandardObjectDifference _differences = 9;
132
153
  repeated CDKRule _warnings = 10;
133
154
  }
134
155
  //Fully managed, scalable, relational database service for regional and global application data.
135
- message GCPBigtableCluster{
156
+ message GCPBigtableCluster {
136
157
  repeated ScanningIssues _scanning_issues = 1;
137
158
  google.protobuf.StringValue _g_c_p_cluster_name_cluster_id = 2;
138
159
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -140,11 +161,11 @@ message GCPBigtableCluster{
140
161
  google.protobuf.StringValue _g_c_p_storage_type = 5;
141
162
  google.protobuf.StringValue _location = 6;
142
163
  google.protobuf.StringValue _g_c_p_location_location_id = 7;
143
- google.protobuf.StringValue _state = 8;//. Possible Values are : NotKnown,Ready,Creating,Resizing,Disabled
164
+ google.protobuf.StringValue _state = 8; //. Possible Values are : NotKnown,Ready,Creating,Resizing,Disabled
144
165
  google.protobuf.Int32Value _serve_nodes = 9;
145
166
  }
146
167
  //Unified object storage for developers and enterprises
147
- message GCPBucket{
168
+ message GCPBucket {
148
169
  repeated ScanningIssues _scanning_issues = 1;
149
170
  google.protobuf.StringValue _a_d_k__name = 2;
150
171
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -167,34 +188,34 @@ message GCPBucket{
167
188
  repeated StandardObjectDifference _differences = 20;
168
189
  repeated CDKRule _warnings = 21;
169
190
  }
170
- message GCPPolicyBingings{
191
+ message GCPPolicyBingings {
171
192
  google.protobuf.StringValue _role = 1;
172
193
  google.protobuf.StringValue _members = 2;
173
194
  }
174
- message GCPBucketWebsiteData{
195
+ message GCPBucketWebsiteData {
175
196
  google.protobuf.StringValue _main_page_suffix = 1;
176
197
  google.protobuf.StringValue _not_found_page = 2;
177
198
  }
178
- message GCPBucketAccessControl{
199
+ message GCPBucketAccessControl {
179
200
  google.protobuf.StringValue _email = 1;
180
201
  google.protobuf.StringValue _domain = 2;
181
202
  google.protobuf.StringValue _entity = 3;
182
203
  google.protobuf.StringValue _role = 4;
183
204
  }
184
205
  //Unified object storage for developers and enterprises
185
- message GCPBucketObject{
206
+ message GCPBucketObject {
186
207
  repeated ScanningIssues _scanning_issues = 1;
187
208
  google.protobuf.StringValue _name = 2;
188
209
  google.protobuf.StringValue _displayed_size = 3;
189
210
  google.protobuf.StringValue _storage_class = 4;
190
211
  google.protobuf.Int64Value _updated = 5;
191
212
  }
192
- message CloudockitTag{
213
+ message CloudockitTag {
193
214
  google.protobuf.StringValue _key = 1;
194
215
  google.protobuf.StringValue _value = 2;
195
216
  }
196
217
  //Event-driven serverless compute platform.
197
- message GCPCloudFunction{
218
+ message GCPCloudFunction {
198
219
  repeated ScanningIssues _scanning_issues = 1;
199
220
  google.protobuf.StringValue _g_c_p_function_name = 2;
200
221
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -211,16 +232,16 @@ message GCPCloudFunction{
211
232
  repeated StandardObjectDifference _differences = 14;
212
233
  repeated CDKRule _warnings = 15;
213
234
  }
214
- message GCPHttpsTrigger{
235
+ message GCPHttpsTrigger {
215
236
  google.protobuf.StringValue _url = 1;
216
237
  }
217
- message GCPEventTrigger{
238
+ message GCPEventTrigger {
218
239
  google.protobuf.StringValue _event_type = 1;
219
240
  google.protobuf.StringValue _resource = 2;
220
241
  google.protobuf.StringValue _service = 3;
221
242
  }
222
243
  //Fine-grained identity and access management for GCP resources.
223
- message GCPCloudIAM{
244
+ message GCPCloudIAM {
224
245
  repeated ScanningIssues _scanning_issues = 1;
225
246
  google.protobuf.StringValue _a_d_k__name = 2;
226
247
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -228,12 +249,12 @@ message GCPCloudIAM{
228
249
  repeated StandardObjectDifference _differences = 5;
229
250
  repeated CDKRule _warnings = 6;
230
251
  }
231
- message GcpIamBindingMember{
252
+ message GcpIamBindingMember {
232
253
  google.protobuf.StringValue _member_type = 1;
233
254
  google.protobuf.StringValue _member_name = 2;
234
255
  }
235
256
  //Reliable, efficient, and secured way to run Kubernetes clusters, anywhere.
236
- message GCPCluster{
257
+ message GCPCluster {
237
258
  repeated ScanningIssues _scanning_issues = 1;
238
259
  google.protobuf.StringValue _name = 2;
239
260
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -272,7 +293,7 @@ message GCPCluster{
272
293
  repeated CDKRule _warnings = 36;
273
294
  }
274
295
  //Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).
275
- message KubernetesNode{
296
+ message KubernetesNode {
276
297
  repeated ScanningIssues _scanning_issues = 1;
277
298
  google.protobuf.StringValue _node_name = 2;
278
299
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -301,7 +322,7 @@ message KubernetesNode{
301
322
  repeated KubernetesPod _pods = 26;
302
323
  }
303
324
  //Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.
304
- message KubernetesPod{
325
+ message KubernetesPod {
305
326
  repeated ScanningIssues _scanning_issues = 1;
306
327
  google.protobuf.StringValue _pod_name = 2;
307
328
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -324,14 +345,14 @@ message KubernetesPod{
324
345
  repeated KubernetesPodCondition _pod_conditions = 20;
325
346
  repeated KubernetesContainer _containers = 21;
326
347
  }
327
- message KubernetesPodCondition{
348
+ message KubernetesPodCondition {
328
349
  google.protobuf.StringValue _type = 1;
329
350
  google.protobuf.StringValue _status = 2;
330
351
  google.protobuf.StringValue _last_transition_time = 3;
331
352
  google.protobuf.StringValue _reason = 4;
332
353
  }
333
354
  //A single application container that you want to run within a pod.
334
- message KubernetesContainer{
355
+ message KubernetesContainer {
335
356
  repeated ScanningIssues _scanning_issues = 1;
336
357
  google.protobuf.StringValue _container_name = 2;
337
358
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -352,7 +373,7 @@ message KubernetesContainer{
352
373
  repeated CloudockitTag _commands = 18;
353
374
  }
354
375
  //Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.
355
- message KubernetesService{
376
+ message KubernetesService {
356
377
  repeated ScanningIssues _scanning_issues = 1;
357
378
  google.protobuf.StringValue _service_name = 2;
358
379
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -369,14 +390,14 @@ message KubernetesService{
369
390
  repeated KubernetesEndpointSubset _kubernetes_endpoint_subsets = 14;
370
391
  }
371
392
  //EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports.
372
- message KubernetesEndpointSubset{
393
+ message KubernetesEndpointSubset {
373
394
  repeated ScanningIssues _scanning_issues = 1;
374
395
  google.protobuf.StringValue _host_i_p = 2;
375
396
  google.protobuf.StringValue _ports_text = 3;
376
397
  google.protobuf.StringValue _node_name = 4;
377
398
  }
378
399
  //Run containerized applications.
379
- message GCPNodePool{
400
+ message GCPNodePool {
380
401
  repeated ScanningIssues _scanning_issues = 1;
381
402
  google.protobuf.StringValue _name = 2;
382
403
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -401,13 +422,13 @@ message GCPNodePool{
401
422
  repeated GCPNodeTaint _taints = 22;
402
423
  repeated CloudockitTag _labels = 23;
403
424
  }
404
- message GCPNodeTaint{
425
+ message GCPNodeTaint {
405
426
  google.protobuf.StringValue _effect = 1;
406
427
  google.protobuf.StringValue _key = 2;
407
428
  google.protobuf.StringValue _value = 3;
408
429
  }
409
430
  //Fully managed relational database services
410
- message GCPDatabaseInstance{
431
+ message GCPDatabaseInstance {
411
432
  repeated ScanningIssues _scanning_issues = 1;
412
433
  google.protobuf.StringValue _name = 2;
413
434
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -446,33 +467,33 @@ message GCPDatabaseInstance{
446
467
  repeated StandardObjectDifference _differences = 36;
447
468
  repeated CDKRule _warnings = 37;
448
469
  }
449
- message GCPDatabase{
470
+ message GCPDatabase {
450
471
  google.protobuf.StringValue _name = 1;
451
472
  google.protobuf.StringValue _charset = 2;
452
473
  google.protobuf.StringValue _collation = 3;
453
474
  }
454
- message GCPDatabaseInstanceUser{
475
+ message GCPDatabaseInstanceUser {
455
476
  google.protobuf.StringValue _name = 1;
456
477
  google.protobuf.StringValue _host = 2;
457
478
  }
458
- message GCPBackupRun{
479
+ message GCPBackupRun {
459
480
  google.protobuf.StringValue _window_start_time = 1;
460
481
  google.protobuf.StringValue _type = 2;
461
482
  google.protobuf.StringValue _description = 3;
462
483
  google.protobuf.StringValue _status = 4;
463
484
  }
464
- message GCPAuthorizedNetwork{
485
+ message GCPAuthorizedNetwork {
465
486
  google.protobuf.StringValue _name = 1;
466
487
  google.protobuf.StringValue _value = 2;
467
488
  google.protobuf.StringValue _expiration_time = 3;
468
489
  }
469
- message GCPDatabaseInstanceIpAddress{
490
+ message GCPDatabaseInstanceIpAddress {
470
491
  google.protobuf.StringValue _ip_address = 1;
471
492
  google.protobuf.StringValue _type = 2;
472
493
  google.protobuf.StringValue _time_to_retire = 3;
473
494
  }
474
495
  //A fully managed service to easily and securely connect, manage, and ingest data from globally dispersed devices.
475
- message GCPDeviceRegistry{
496
+ message GCPDeviceRegistry {
476
497
  repeated ScanningIssues _scanning_issues = 1;
477
498
  google.protobuf.StringValue _a_d_k__name = 2;
478
499
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -486,19 +507,19 @@ message GCPDeviceRegistry{
486
507
  repeated StandardObjectDifference _differences = 11;
487
508
  repeated CDKRule _warnings = 12;
488
509
  }
489
- message GCPEventNotificationConfig{
510
+ message GCPEventNotificationConfig {
490
511
  google.protobuf.StringValue _pubsub_topic_name = 1;
491
512
  google.protobuf.StringValue _subfolder_matches = 2;
492
513
  }
493
514
  //A fully managed service to easily and securely connect, manage, and ingest data from globally dispersed devices.
494
- message GCPDevice{
515
+ message GCPDevice {
495
516
  repeated ScanningIssues _scanning_issues = 1;
496
517
  google.protobuf.StringValue _id = 2;
497
518
  google.protobuf.StringValue _communication = 3;
498
519
  google.protobuf.StringValue _last_seen = 4;
499
520
  }
500
521
  //Folders are nodes in the Cloud Platform Resource Hierarchy. A folder can contain projects, other folders, or a combination of both.
501
- message GCPFolder{
522
+ message GCPFolder {
502
523
  repeated ScanningIssues _scanning_issues = 1;
503
524
  google.protobuf.StringValue _a_d_k__name = 2;
504
525
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -513,7 +534,7 @@ message GCPFolder{
513
534
  repeated CDKRule _warnings = 12;
514
535
  }
515
536
  //A GCP Load balancer composed of Forwarding Rules, Proxies, UrlMap and Backends
516
- message GCPHttpLoadBalancer{
537
+ message GCPHttpLoadBalancer {
517
538
  repeated ScanningIssues _scanning_issues = 1;
518
539
  google.protobuf.StringValue _a_d_k__name = 2;
519
540
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -524,7 +545,7 @@ message GCPHttpLoadBalancer{
524
545
  repeated StandardObjectDifference _differences = 8;
525
546
  repeated CDKRule _warnings = 9;
526
547
  }
527
- message GCPLoadBalancingFrontend{
548
+ message GCPLoadBalancingFrontend {
528
549
  google.protobuf.StringValue _forwarding_rule_name = 1;
529
550
  google.protobuf.StringValue _forwarding_rule_i_p_address = 2;
530
551
  google.protobuf.StringValue _protocol = 3;
@@ -533,13 +554,13 @@ message GCPLoadBalancingFrontend{
533
554
  google.protobuf.StringValue _forwarding_rule_network_tier = 6;
534
555
  google.protobuf.StringValue _region_text = 7;
535
556
  }
536
- message GCPPathRule{
557
+ message GCPPathRule {
537
558
  google.protobuf.StringValue _hosts_text = 1;
538
559
  google.protobuf.StringValue _paths_text = 2;
539
560
  google.protobuf.StringValue _backend = 3;
540
561
  }
541
562
  //High performance, scalable load balancing on Google Cloud Platform.
542
- message GCPLoadBalancingBackendService{
563
+ message GCPLoadBalancingBackendService {
543
564
  repeated ScanningIssues _scanning_issues = 1;
544
565
  google.protobuf.StringValue _name = 2;
545
566
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -551,7 +572,7 @@ message GCPLoadBalancingBackendService{
551
572
  google.protobuf.StringValue _health_check_text = 9;
552
573
  }
553
574
  //High performance, scalable load balancing on Google Cloud Platform.
554
- message GCPLoadBalancingBackendBucket{
575
+ message GCPLoadBalancingBackendBucket {
555
576
  repeated ScanningIssues _scanning_issues = 1;
556
577
  google.protobuf.StringValue _name = 2;
557
578
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -559,7 +580,7 @@ message GCPLoadBalancingBackendBucket{
559
580
  google.protobuf.StringValue _bucket_name = 5;
560
581
  }
561
582
  //Reliable, high-performance block storage for virtual machine instances
562
- message GCPInstanceGroup{
583
+ message GCPInstanceGroup {
563
584
  repeated ScanningIssues _scanning_issues = 1;
564
585
  google.protobuf.StringValue _name = 2;
565
586
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -574,7 +595,7 @@ message GCPInstanceGroup{
574
595
  repeated CDKRule _warnings = 12;
575
596
  }
576
597
  //An instance template is a resource that you can use to create VM instances and managed instance groups.
577
- message GCPInstanceTemplate{
598
+ message GCPInstanceTemplate {
578
599
  repeated ScanningIssues _scanning_issues = 1;
579
600
  google.protobuf.StringValue _name = 2;
580
601
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -601,11 +622,11 @@ message GCPInstanceTemplate{
601
622
  repeated StandardObjectDifference _differences = 24;
602
623
  repeated CDKRule _warnings = 25;
603
624
  }
604
- message GCPServiceAccount{
625
+ message GCPServiceAccount {
605
626
  google.protobuf.StringValue _email = 1;
606
627
  }
607
628
  //Dataflow is a fully managed streaming analytics service that minimizes latency, processing time, and cost through autoscaling and batch processing. With its serverless approach to resource provisioning and management, you have access to virtually limitless capacity to solve your biggest data processing challenges, while paying only for what you use.
608
- message GCPJob{
629
+ message GCPJob {
609
630
  repeated ScanningIssues _scanning_issues = 1;
610
631
  google.protobuf.StringValue _a_d_k__name = 2;
611
632
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -621,7 +642,7 @@ message GCPJob{
621
642
  repeated CDKRule _warnings = 13;
622
643
  }
623
644
  //Fully-managed in-memory data store service for Redis
624
- message GCPMemorystore{
645
+ message GCPMemorystore {
625
646
  repeated ScanningIssues _scanning_issues = 1;
626
647
  google.protobuf.StringValue _display_name = 2;
627
648
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -633,15 +654,15 @@ message GCPMemorystore{
633
654
  google.protobuf.StringValue _reserved_ip_range = 9;
634
655
  google.protobuf.StringValue _host = 10;
635
656
  google.protobuf.Int32Value _port = 11;
636
- google.protobuf.StringValue _state = 12;//. Possible Values are : Unspecified,Creating,Ready,Updating,Deleting,Repairing,Maintenance,Importing,FailingOver
637
- google.protobuf.StringValue _tier = 13;//. Possible Values are : Unspecified,Basic,StandardHa
657
+ google.protobuf.StringValue _state = 12; //. Possible Values are : Unspecified,Creating,Ready,Updating,Deleting,Repairing,Maintenance,Importing,FailingOver
658
+ google.protobuf.StringValue _tier = 13; //. Possible Values are : Unspecified,Basic,StandardHa
638
659
  google.protobuf.Int32Value _memory_size_gb = 14;
639
660
  repeated CloudockitTag _redis_configurations = 15;
640
661
  repeated StandardObjectDifference _differences = 16;
641
662
  repeated CDKRule _warnings = 17;
642
663
  }
643
664
  //Managed networking functionality for your Cloud Platform resources
644
- message GCPNetwork{
665
+ message GCPNetwork {
645
666
  repeated ScanningIssues _scanning_issues = 1;
646
667
  google.protobuf.StringValue _name = 2;
647
668
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -661,7 +682,7 @@ message GCPNetwork{
661
682
  repeated CDKRule _warnings = 17;
662
683
  }
663
684
  //Managed networking functionality for your Cloud Platform resources
664
- message GCPSubnetwork{
685
+ message GCPSubnetwork {
665
686
  repeated ScanningIssues _scanning_issues = 1;
666
687
  google.protobuf.StringValue _name = 2;
667
688
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -674,12 +695,12 @@ message GCPSubnetwork{
674
695
  google.protobuf.StringValue _enable_flow_logs_text = 10;
675
696
  repeated GCPSubnetworkSecondaryRange _secondary_ip_ranges = 11;
676
697
  }
677
- message GCPSubnetworkSecondaryRange{
698
+ message GCPSubnetworkSecondaryRange {
678
699
  google.protobuf.StringValue _range_name = 1;
679
700
  google.protobuf.StringValue _ip_cidr_range = 2;
680
701
  }
681
702
  //Managed networking functionality for your Cloud Platform resources
682
- message GCPRoute{
703
+ message GCPRoute {
683
704
  repeated ScanningIssues _scanning_issues = 1;
684
705
  google.protobuf.StringValue _name = 2;
685
706
  google.protobuf.StringValue _dest_range = 3;
@@ -687,7 +708,7 @@ message GCPRoute{
687
708
  google.protobuf.StringValue _next_hop_gateway_text = 5;
688
709
  }
689
710
  //Protect sensitive data in GCP services using security perimeters.
690
- message GCPFirewall{
711
+ message GCPFirewall {
691
712
  repeated ScanningIssues _scanning_issues = 1;
692
713
  google.protobuf.StringValue _name = 2;
693
714
  google.protobuf.StringValue _targets_text = 3;
@@ -695,7 +716,7 @@ message GCPFirewall{
695
716
  google.protobuf.StringValue _protocols_or_ports_text = 5;
696
717
  google.protobuf.Int32Value _priority = 6;
697
718
  }
698
- message GCPNetworkPeering{
719
+ message GCPNetworkPeering {
699
720
  google.protobuf.StringValue _name = 1;
700
721
  google.protobuf.StringValue _e_tag = 2;
701
722
  google.protobuf.StringValue _network = 3;
@@ -703,7 +724,7 @@ message GCPNetworkPeering{
703
724
  google.protobuf.StringValue _state_details = 5;
704
725
  }
705
726
  //A node in the resource hierarchy to which a particular entity's (e.g.,company) resources belong.
706
- message GCPOrganization{
727
+ message GCPOrganization {
707
728
  repeated ScanningIssues _scanning_issues = 1;
708
729
  google.protobuf.StringValue _a_d_k__name = 2;
709
730
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -716,7 +737,7 @@ message GCPOrganization{
716
737
  repeated CDKRule _warnings = 10;
717
738
  }
718
739
  //A Project is a high-level Google Cloud Platform entity. It is a container for ACLs, APIs, App Engine Apps, VMs, and other Google Cloud Platform resources.
719
- message GCPProject{
740
+ message GCPProject {
720
741
  repeated ScanningIssues _scanning_issues = 1;
721
742
  google.protobuf.StringValue _a_d_k__name = 2;
722
743
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -730,14 +751,14 @@ message GCPProject{
730
751
  repeated StandardObjectDifference _differences = 11;
731
752
  repeated CDKRule _warnings = 12;
732
753
  }
733
- message ADKObject{
754
+ message ADKObject {
734
755
  google.protobuf.StringValue _a_d_k__g_u_i_d = 1;
735
756
  google.protobuf.StringValue _a_d_k__name = 2;
736
757
  google.protobuf.StringValue _a_d_k__object_type = 3;
737
758
  google.protobuf.StringValue _a_d_k__location = 4;
738
759
  }
739
760
  //Global messaging and event ingestion made simple.
740
- message GCPPubSubTopic{
761
+ message GCPPubSubTopic {
741
762
  repeated ScanningIssues _scanning_issues = 1;
742
763
  google.protobuf.StringValue _display_name = 2;
743
764
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -749,7 +770,7 @@ message GCPPubSubTopic{
749
770
  google.protobuf.StringValue _name = 9;
750
771
  }
751
772
  //Global messaging and event ingestion made simple.
752
- message GCPPubSubSubcription{
773
+ message GCPPubSubSubcription {
753
774
  repeated ScanningIssues _scanning_issues = 1;
754
775
  google.protobuf.StringValue _name = 2;
755
776
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -758,7 +779,7 @@ message GCPPubSubSubcription{
758
779
  google.protobuf.StringValue _message_retention_duration_text = 6;
759
780
  }
760
781
  //Stores sensitive data such as API keys, passwords, and certificates. Provides convenience while improving security.
761
- message GCPSecret{
782
+ message GCPSecret {
762
783
  repeated ScanningIssues _scanning_issues = 1;
763
784
  google.protobuf.StringValue _display_name = 2;
764
785
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -775,12 +796,12 @@ message GCPSecret{
775
796
  repeated StandardObjectDifference _differences = 14;
776
797
  repeated CDKRule _warnings = 15;
777
798
  }
778
- message GCPSecretEncryption{
799
+ message GCPSecretEncryption {
779
800
  google.protobuf.StringValue _key_ring = 1;
780
801
  google.protobuf.StringValue _key = 2;
781
802
  google.protobuf.StringValue _location = 3;
782
803
  }
783
- message GCPSecretVersion{
804
+ message GCPSecretVersion {
784
805
  google.protobuf.StringValue _name = 1;
785
806
  google.protobuf.StringValue _version_number = 2;
786
807
  google.protobuf.StringValue _create_time = 3;
@@ -789,7 +810,7 @@ message GCPSecretVersion{
789
810
  google.protobuf.BoolValue _client_specified_payload_checksum = 6;
790
811
  }
791
812
  //Fully managed, scalable, relational database service for regional and global application data
792
- message GCPSpanner{
813
+ message GCPSpanner {
793
814
  repeated ScanningIssues _scanning_issues = 1;
794
815
  google.protobuf.StringValue _display_name = 2;
795
816
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -797,20 +818,20 @@ message GCPSpanner{
797
818
  google.protobuf.StringValue _instance_id = 5;
798
819
  google.protobuf.StringValue _configuration = 6;
799
820
  google.protobuf.Int32Value _node_count = 7;
800
- google.protobuf.StringValue _state = 8;//. Possible Values are : Unspecified,Creating,Ready
821
+ google.protobuf.StringValue _state = 8; //. Possible Values are : Unspecified,Creating,Ready
801
822
  repeated GCPSpannerDatabase _databases = 9;
802
823
  repeated StandardObjectDifference _differences = 10;
803
824
  repeated CDKRule _warnings = 11;
804
825
  }
805
826
  //Fully managed, scalable, relational database service for regional and global application data
806
- message GCPSpannerDatabase{
827
+ message GCPSpannerDatabase {
807
828
  repeated ScanningIssues _scanning_issues = 1;
808
829
  google.protobuf.StringValue _a_d_k__name = 2;
809
830
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
810
- google.protobuf.StringValue _state = 4;//. Possible Values are : Unspecified,Creating,Ready,ReadyOptimizing
831
+ google.protobuf.StringValue _state = 4; //. Possible Values are : Unspecified,Creating,Ready,ReadyOptimizing
811
832
  }
812
833
  //A GCP TCP/SSL Load balancer composed of Forwarding rules, a Backend Service, a Target Pool and possibly TCP and SSL proxies
813
- message GCPTcpLoadBalancer{
834
+ message GCPTcpLoadBalancer {
814
835
  repeated ScanningIssues _scanning_issues = 1;
815
836
  google.protobuf.StringValue _project_project_name = 2;
816
837
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -821,7 +842,7 @@ message GCPTcpLoadBalancer{
821
842
  repeated CDKRule _warnings = 8;
822
843
  }
823
844
  //A BackendService resource. This resource defines a group of backend virtual machines and their serving capacity.
824
- message GcpLoadBalancingTargetPool{
845
+ message GcpLoadBalancingTargetPool {
825
846
  repeated ScanningIssues _scanning_issues = 1;
826
847
  google.protobuf.StringValue _a_d_k__name = 2;
827
848
  google.protobuf.StringValue _a_d_k__location = 3;
@@ -829,7 +850,7 @@ message GcpLoadBalancingTargetPool{
829
850
  google.protobuf.StringValue _health_check_text = 5;
830
851
  }
831
852
  //A GCP UDP Load balancer composed of forwarding rules and a backend service or a target pool.
832
- message GCPUdpLoadBalancer{
853
+ message GCPUdpLoadBalancer {
833
854
  repeated ScanningIssues _scanning_issues = 1;
834
855
  google.protobuf.StringValue _project_project_name = 2;
835
856
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -840,7 +861,7 @@ message GCPUdpLoadBalancer{
840
861
  repeated CDKRule _warnings = 8;
841
862
  }
842
863
  //Reliable, high-performance block storage for virtual machine instances
843
- message GCPVMInstance{
864
+ message GCPVMInstance {
844
865
  repeated ScanningIssues _scanning_issues = 1;
845
866
  google.protobuf.StringValue _name = 2;
846
867
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -878,7 +899,7 @@ message GCPVMInstance{
878
899
  repeated CDKRule _warnings = 35;
879
900
  }
880
901
  //Reliable, high-performance block storage for virtual machine instances
881
- message GCPPersistantDisk{
902
+ message GCPPersistantDisk {
882
903
  repeated ScanningIssues _scanning_issues = 1;
883
904
  google.protobuf.StringValue _name = 2;
884
905
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -894,7 +915,7 @@ message GCPPersistantDisk{
894
915
  google.protobuf.StringValue _in_use_by = 13;
895
916
  }
896
917
  //Network Interface to allow network connection
897
- message GCPNetworkInterface{
918
+ message GCPNetworkInterface {
898
919
  repeated ScanningIssues _scanning_issues = 1;
899
920
  google.protobuf.StringValue _name = 2;
900
921
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -904,14 +925,13 @@ message GCPNetworkInterface{
904
925
  google.protobuf.StringValue _external_i_p = 7;
905
926
  repeated GCPAliasIpRange _alias_ip_ranges = 8;
906
927
  }
907
- message GCPAliasIpRange{
928
+ message GCPAliasIpRange {
908
929
  google.protobuf.StringValue _subnetwork_range_name = 1;
909
930
  google.protobuf.StringValue _ip_cidr_range = 2;
910
931
  }
911
- message ServiceAccount{
912
- }
932
+ message ServiceAccount {}
913
933
  //Synchronize on-premises directories and enable single sign-on.
914
- message AzureActiveDirectory{
934
+ message AzureActiveDirectory {
915
935
  repeated ScanningIssues _scanning_issues = 1;
916
936
  google.protobuf.StringValue _a_d_k__name = 2;
917
937
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -926,29 +946,29 @@ message AzureActiveDirectory{
926
946
  repeated ResourceBilling _resources_billing = 12;
927
947
  google.protobuf.StringValue _a_d_k__price = 13;
928
948
  }
929
- message AzureActiveDirectoryUser{
949
+ message AzureActiveDirectoryUser {
930
950
  google.protobuf.StringValue _display_name = 1;
931
951
  google.protobuf.StringValue _mail = 2;
932
952
  google.protobuf.StringValue _job_title = 3;
933
953
  google.protobuf.StringValue _city = 4;
934
954
  google.protobuf.StringValue _account_enabled = 5;
935
955
  }
936
- message AzureActiveDirectoryGroup{
956
+ message AzureActiveDirectoryGroup {
937
957
  google.protobuf.StringValue _display_name = 1;
938
958
  google.protobuf.StringValue _description = 2;
939
959
  google.protobuf.StringValue _mail = 3;
940
960
  google.protobuf.StringValue _security_enabled = 4;
941
961
  }
942
- message AzureActiveDirectoryApplication{
962
+ message AzureActiveDirectoryApplication {
943
963
  google.protobuf.StringValue _display_name = 1;
944
964
  google.protobuf.StringValue _app_id = 2;
945
965
  }
946
- message AzureActiveDirectoryRole{
966
+ message AzureActiveDirectoryRole {
947
967
  google.protobuf.StringValue _display_name = 1;
948
968
  google.protobuf.StringValue _description = 2;
949
969
  }
950
970
  //Role-based access control (RBAC) helps to manage who has access to Azure resources, what they can do with those resources, and what areas they have access to.
951
- message AzureMicrosoftAuthorizationRoleAssignment{
971
+ message AzureMicrosoftAuthorizationRoleAssignment {
952
972
  repeated ScanningIssues _scanning_issues = 1;
953
973
  google.protobuf.StringValue _principal_name = 2;
954
974
  google.protobuf.StringValue _role_name = 3;
@@ -956,33 +976,33 @@ message AzureMicrosoftAuthorizationRoleAssignment{
956
976
  google.protobuf.StringValue _role_assigment_type = 5;
957
977
  }
958
978
  //Lock a subscription, resource group, or resource to prevent other users in your organization from accidentally deleting or modifying critical resources.
959
- message AzureMicrosoftManagementLock{
979
+ message AzureMicrosoftManagementLock {
960
980
  repeated ScanningIssues _scanning_issues = 1;
961
981
  google.protobuf.StringValue _name = 2;
962
982
  google.protobuf.StringValue _type = 3;
963
983
  google.protobuf.StringValue _lock_properties_level = 4;
964
984
  google.protobuf.StringValue _lock_properties_notes = 5;
965
985
  }
966
- message ResourceBilling{
986
+ message ResourceBilling {
967
987
  google.protobuf.StringValue _category = 1;
968
988
  google.protobuf.StringValue _value = 2;
969
989
  }
970
990
  //Enterprise-grade analytics engine as a service.
971
- message AzureAnalysisServicesServer{
991
+ message AzureAnalysisServicesServer {
972
992
  repeated ScanningIssues _scanning_issues = 1;
973
993
  google.protobuf.StringValue _a_d_k__name = 2;
974
994
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
975
995
  google.protobuf.StringValue _resource_group_name = 4;
976
- google.protobuf.StringValue _status = 5;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
996
+ google.protobuf.StringValue _status = 5; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
977
997
  google.protobuf.StringValue _provisioning_state = 6;
978
998
  google.protobuf.StringValue _location = 7;
979
999
  google.protobuf.StringValue _server_full_name = 8;
980
1000
  google.protobuf.StringValue _sku_name = 9;
981
- google.protobuf.StringValue _querypool_connection_mode = 10;//. Possible Values are : All,ReadOnly
1001
+ google.protobuf.StringValue _querypool_connection_mode = 10; //. Possible Values are : All,ReadOnly
982
1002
  google.protobuf.StringValue _backup_blob_container_uri = 11;
983
1003
  repeated AzureString _server_as_administrators = 12;
984
- google.protobuf.StringValue _enable_firewall = 13;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
985
- google.protobuf.StringValue _server_ip_v4_firewall_settings_enable_power_b_i_service = 14;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
1004
+ google.protobuf.StringValue _enable_firewall = 13; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
1005
+ google.protobuf.StringValue _server_ip_v4_firewall_settings_enable_power_b_i_service = 14; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
986
1006
  repeated AzureAnalysisServiceIPv4FirewallRule _firewall_rules = 15;
987
1007
  repeated CloudockitTag _tags = 16;
988
1008
  repeated AzureMicrosoftAuthorizationRoleAssignment _role_assignments = 17;
@@ -992,16 +1012,16 @@ message AzureAnalysisServicesServer{
992
1012
  repeated ResourceBilling _resources_billing = 21;
993
1013
  google.protobuf.StringValue _a_d_k__price = 22;
994
1014
  }
995
- message AzureString{
1015
+ message AzureString {
996
1016
  google.protobuf.StringValue _value = 1;
997
1017
  }
998
- message AzureAnalysisServiceIPv4FirewallRule{
1018
+ message AzureAnalysisServiceIPv4FirewallRule {
999
1019
  google.protobuf.StringValue _firewall_rule_name = 1;
1000
1020
  google.protobuf.StringValue _range_start = 2;
1001
1021
  google.protobuf.StringValue _range_end = 3;
1002
1022
  }
1003
1023
  // Application Insights component definition.
1004
- message AzureApplicationInsight{
1024
+ message AzureApplicationInsight {
1005
1025
  repeated ScanningIssues _scanning_issues = 1;
1006
1026
  google.protobuf.StringValue _a_d_k__name = 2;
1007
1027
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1024,13 +1044,13 @@ message AzureApplicationInsight{
1024
1044
  google.protobuf.StringValue _a_d_k__price = 20;
1025
1045
  }
1026
1046
  //Business Application
1027
- message Application{
1047
+ message Application {
1028
1048
  repeated ScanningIssues _scanning_issues = 1;
1029
1049
  google.protobuf.StringValue _a_d_k__name = 2;
1030
1050
  repeated ADKObject _objects_in_container = 3;
1031
1051
  }
1032
1052
  //Databricks Workspace is an analytics platform based on Apache Spark. Azure Databricks Workspace is integrated with Azure to provide one-click setup, streamlined workflows, and an interactive workspace.
1033
- message AzureDatabrickWorkspace{
1053
+ message AzureDatabrickWorkspace {
1034
1054
  repeated ScanningIssues _scanning_issues = 1;
1035
1055
  google.protobuf.StringValue _a_d_k__name = 2;
1036
1056
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1054,7 +1074,7 @@ message AzureDatabrickWorkspace{
1054
1074
  google.protobuf.StringValue _a_d_k__price = 21;
1055
1075
  }
1056
1076
  //VNet peering (or virtual network peering) enables you to connect virtual networks. A VNet peering connection between virtual networks enables you to route traffic between them privately through IPv4 addresses. Virtual machines in the peered VNets can communicate with each other as if they are within the same network.
1057
- message AzureMicrosoftVirtualNetworkPeering{
1077
+ message AzureMicrosoftVirtualNetworkPeering {
1058
1078
  repeated ScanningIssues _scanning_issues = 1;
1059
1079
  google.protobuf.StringValue _a_d_k__name = 2;
1060
1080
  google.protobuf.StringValue _peering_state = 3;
@@ -1067,7 +1087,7 @@ message AzureMicrosoftVirtualNetworkPeering{
1067
1087
  google.protobuf.BoolValue _use_remote_gateways = 10;
1068
1088
  }
1069
1089
  //An account data transfer object.
1070
- message AzureDataShareAccount{
1090
+ message AzureDataShareAccount {
1071
1091
  repeated ScanningIssues _scanning_issues = 1;
1072
1092
  google.protobuf.StringValue _a_d_k__name = 2;
1073
1093
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1088,7 +1108,7 @@ message AzureDataShareAccount{
1088
1108
  google.protobuf.StringValue _a_d_k__price = 18;
1089
1109
  }
1090
1110
  //A share data transfer object.
1091
- message AzureDataShareSentShare{
1111
+ message AzureDataShareSentShare {
1092
1112
  repeated ScanningIssues _scanning_issues = 1;
1093
1113
  google.protobuf.StringValue _a_d_k__name = 2;
1094
1114
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1103,14 +1123,14 @@ message AzureDataShareSentShare{
1103
1123
  repeated AzureDataShareInvitation _invitations = 12;
1104
1124
  }
1105
1125
  //A DataSet data transfer object.
1106
- message AzureSentShareDataSet{
1126
+ message AzureSentShareDataSet {
1107
1127
  repeated ScanningIssues _scanning_issues = 1;
1108
1128
  google.protobuf.StringValue _data_set_name = 2;
1109
1129
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
1110
1130
  google.protobuf.StringValue _data_set_type = 4;
1111
1131
  google.protobuf.StringValue _data_set_path = 5;
1112
1132
  }
1113
- message AzureProviderShareSubscription{
1133
+ message AzureProviderShareSubscription {
1114
1134
  google.protobuf.StringValue _consumer_name = 1;
1115
1135
  google.protobuf.StringValue _consumer_tenant_name = 2;
1116
1136
  google.protobuf.StringValue _share_subscription_status = 3;
@@ -1118,14 +1138,14 @@ message AzureProviderShareSubscription{
1118
1138
  google.protobuf.StringValue _expiration_date = 5;
1119
1139
  google.protobuf.StringValue _shared_at = 6;
1120
1140
  }
1121
- message AzureDataShareInvitation{
1141
+ message AzureDataShareInvitation {
1122
1142
  google.protobuf.StringValue _target_email = 1;
1123
1143
  google.protobuf.StringValue _invitation_status = 2;
1124
1144
  google.protobuf.StringValue _user_name = 3;
1125
1145
  google.protobuf.StringValue _sent_at = 4;
1126
1146
  }
1127
1147
  //A share subscription data transfer object.
1128
- message AzureDataShareReceivedShare{
1148
+ message AzureDataShareReceivedShare {
1129
1149
  repeated ScanningIssues _scanning_issues = 1;
1130
1150
  google.protobuf.StringValue _a_d_k__name = 2;
1131
1151
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1142,7 +1162,7 @@ message AzureDataShareReceivedShare{
1142
1162
  repeated AzureReceivedShareDataSet _data_sets = 14;
1143
1163
  }
1144
1164
  //A data set mapping data transfer object.
1145
- message AzureReceivedShareDataSet{
1165
+ message AzureReceivedShareDataSet {
1146
1166
  repeated ScanningIssues _scanning_issues = 1;
1147
1167
  google.protobuf.StringValue _data_set_name = 2;
1148
1168
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1153,7 +1173,7 @@ message AzureReceivedShareDataSet{
1153
1173
  google.protobuf.StringValue _path = 8;
1154
1174
  }
1155
1175
  //Quickly create environments using reusable templates and artifacts.
1156
- message AzureDevTestLab{
1176
+ message AzureDevTestLab {
1157
1177
  repeated ScanningIssues _scanning_issues = 1;
1158
1178
  google.protobuf.StringValue _a_d_k__name = 2;
1159
1179
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1177,7 +1197,7 @@ message AzureDevTestLab{
1177
1197
  google.protobuf.StringValue _a_d_k__price = 21;
1178
1198
  }
1179
1199
  //Azure formula for specific virtual machine template.
1180
- message AzureLabFormula{
1200
+ message AzureLabFormula {
1181
1201
  repeated ScanningIssues _scanning_issues = 1;
1182
1202
  google.protobuf.StringValue _name = 2;
1183
1203
  google.protobuf.StringValue _os_type = 3;
@@ -1187,7 +1207,7 @@ message AzureLabFormula{
1187
1207
  google.protobuf.StringValue _v_m_source = 7;
1188
1208
  }
1189
1209
  //Azure Artifacts available to download on a lab virtual machine.
1190
- message AzureLabArtifact{
1210
+ message AzureLabArtifact {
1191
1211
  repeated ScanningIssues _scanning_issues = 1;
1192
1212
  google.protobuf.StringValue _title = 2;
1193
1213
  google.protobuf.StringValue _publisher = 3;
@@ -1195,7 +1215,7 @@ message AzureLabArtifact{
1195
1215
  google.protobuf.StringValue _description = 5;
1196
1216
  }
1197
1217
  //As a lab owner, you can configure your lab virtual machines to be created in a specific resource group.
1198
- message AzureLabVirtualMachine{
1218
+ message AzureLabVirtualMachine {
1199
1219
  repeated ScanningIssues _scanning_issues = 1;
1200
1220
  google.protobuf.StringValue _a_d_k__name = 2;
1201
1221
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1212,7 +1232,7 @@ message AzureLabVirtualMachine{
1212
1232
  repeated AzureLabSchedule _applicable_schedules = 14;
1213
1233
  }
1214
1234
  //Azure Managed Disks manages the storage accounts associated with virtual machine data disks. A user attaches a new data disk to a VM, specifies the type and size of disk that's needed, and Azure creates and manages the disk automatically.
1215
- message AzureLabOSDisk{
1235
+ message AzureLabOSDisk {
1216
1236
  repeated ScanningIssues _scanning_issues = 1;
1217
1237
  google.protobuf.StringValue _name = 2;
1218
1238
  google.protobuf.Int32Value _disk_size_g_b = 3;
@@ -1220,7 +1240,7 @@ message AzureLabOSDisk{
1220
1240
  google.protobuf.StringValue _disk_state = 5;
1221
1241
  }
1222
1242
  //Persistent, secured disk options supporting virtual machines.
1223
- message AzureLabDataDisk{
1243
+ message AzureLabDataDisk {
1224
1244
  repeated ScanningIssues _scanning_issues = 1;
1225
1245
  google.protobuf.StringValue _name = 2;
1226
1246
  google.protobuf.Int32Value _disk_size_g_b = 3;
@@ -1228,7 +1248,7 @@ message AzureLabDataDisk{
1228
1248
  google.protobuf.StringValue _disk_state = 5;
1229
1249
  }
1230
1250
  //Run your jobs on simple or complex recurring schedules.
1231
- message AzureLabSchedule{
1251
+ message AzureLabSchedule {
1232
1252
  repeated ScanningIssues _scanning_issues = 1;
1233
1253
  google.protobuf.StringValue _name_display = 2;
1234
1254
  google.protobuf.StringValue _status_display = 3;
@@ -1237,7 +1257,7 @@ message AzureLabSchedule{
1237
1257
  google.protobuf.StringValue _weekly_recurrence_text = 6;
1238
1258
  }
1239
1259
  //A claimable machine is a virtual machine (VM) that's created in a lab without an owner. Once the machine is claimed, the user has a full range of options for that VM. When a user claims a machine, a few changes are made.
1240
- message AzureLabClaimableVirtualMachine{
1260
+ message AzureLabClaimableVirtualMachine {
1241
1261
  repeated ScanningIssues _scanning_issues = 1;
1242
1262
  google.protobuf.StringValue _a_d_k__name = 2;
1243
1263
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1254,14 +1274,14 @@ message AzureLabClaimableVirtualMachine{
1254
1274
  repeated AzureLabSchedule _applicable_schedules = 14;
1255
1275
  }
1256
1276
  //When you create a VM in a lab, you can specify a configured virtual network. For example, you might need to access your corpnet resources from your VMs using the virtual network that was configured with ExpressRoute or site-to-site VPN.
1257
- message AzureLabVirtualNetwork{
1277
+ message AzureLabVirtualNetwork {
1258
1278
  repeated ScanningIssues _scanning_issues = 1;
1259
1279
  google.protobuf.StringValue _name = 2;
1260
1280
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
1261
1281
  repeated AzureLabSubnet _lab_subnets = 4;
1262
1282
  }
1263
1283
  //Property overrides on a subnet of a virtual network.
1264
- message AzureLabSubnet{
1284
+ message AzureLabSubnet {
1265
1285
  repeated ScanningIssues _scanning_issues = 1;
1266
1286
  google.protobuf.StringValue _lab_subnet_name = 2;
1267
1287
  google.protobuf.StringValue _use_in_vm_creation = 3;
@@ -1269,7 +1289,7 @@ message AzureLabSubnet{
1269
1289
  google.protobuf.StringValue _allow_public_ip_creation = 5;
1270
1290
  }
1271
1291
  //Front Door represents a collection of backend endpoints to route traffic to along with rules that specify how traffic is sent there.
1272
- message AzureFrontDoorModel{
1292
+ message AzureFrontDoorModel {
1273
1293
  repeated ScanningIssues _scanning_issues = 1;
1274
1294
  google.protobuf.StringValue _a_d_k__name = 2;
1275
1295
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1293,13 +1313,13 @@ message AzureFrontDoorModel{
1293
1313
  repeated ResourceBilling _resources_billing = 21;
1294
1314
  google.protobuf.StringValue _a_d_k__price = 22;
1295
1315
  }
1296
- message AzureFrontDoorFrontendEndpoint{
1316
+ message AzureFrontDoorFrontendEndpoint {
1297
1317
  google.protobuf.StringValue _frontend_endpoint_host_name = 1;
1298
1318
  google.protobuf.StringValue _frontend_endpoint_session_affinity_enabled_state = 2;
1299
1319
  google.protobuf.StringValue _status_value = 3;
1300
1320
  }
1301
1321
  //A backend pool is a collection of backends that can be routed to.
1302
- message AzureFrontDoorBackendPool{
1322
+ message AzureFrontDoorBackendPool {
1303
1323
  repeated ScanningIssues _scanning_issues = 1;
1304
1324
  google.protobuf.StringValue _a_d_k__name = 2;
1305
1325
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1312,7 +1332,7 @@ message AzureFrontDoorBackendPool{
1312
1332
  google.protobuf.Int32Value _load_balancing_settings_model_additional_latency_milliseconds = 10;
1313
1333
  }
1314
1334
  //A backend pool is a collection of backends that can be routed to.
1315
- message AzureFrontDoorBackend{
1335
+ message AzureFrontDoorBackend {
1316
1336
  repeated ScanningIssues _scanning_issues = 1;
1317
1337
  google.protobuf.StringValue _address = 2;
1318
1338
  google.protobuf.StringValue _enabled_state = 3;
@@ -1320,7 +1340,7 @@ message AzureFrontDoorBackend{
1320
1340
  google.protobuf.Int32Value _weight = 5;
1321
1341
  }
1322
1342
  //A routing rule represents a specification for traffic to treat and where to send it, along with health probe information.
1323
- message AzureFrontDoorRoutingRule{
1343
+ message AzureFrontDoorRoutingRule {
1324
1344
  repeated ScanningIssues _scanning_issues = 1;
1325
1345
  google.protobuf.StringValue _a_d_k__name = 2;
1326
1346
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1331,13 +1351,13 @@ message AzureFrontDoorRoutingRule{
1331
1351
  repeated AzureRoutingRuleForwardingConfiguration _forwarding_configurations = 8;
1332
1352
  repeated AzureRoutingRuleRedirectConfiguration _redirect_configurations = 9;
1333
1353
  }
1334
- message AzureRoutingRuleForwardingConfiguration{
1354
+ message AzureRoutingRuleForwardingConfiguration {
1335
1355
  google.protobuf.StringValue _backend_pool_name = 1;
1336
1356
  google.protobuf.StringValue _forwarding_configuration_forwarding_protocol = 2;
1337
1357
  google.protobuf.StringValue _forwarding_configuration_custom_forwarding_path = 3;
1338
1358
  google.protobuf.StringValue _caching = 4;
1339
1359
  }
1340
- message AzureRoutingRuleRedirectConfiguration{
1360
+ message AzureRoutingRuleRedirectConfiguration {
1341
1361
  google.protobuf.StringValue _redirect_configuration_redirect_type = 1;
1342
1362
  google.protobuf.StringValue _redirect_configuration_redirect_protocol = 2;
1343
1363
  google.protobuf.StringValue _redirect_configuration_custom_host = 3;
@@ -1345,7 +1365,7 @@ message AzureRoutingRuleRedirectConfiguration{
1345
1365
  google.protobuf.StringValue _redirect_configuration_custom_fragment = 5;
1346
1366
  }
1347
1367
  //An Azure Database for MariaDB server is a central administrative point for multiple databases. It is the same MariaDB server construct that you may be familiar with in the on-premises world. Specifically, the Azure Database for MariaDB service is managed, provides performance guarantees, and exposes access and features at server-level.
1348
- message AzureMariaDBServer{
1368
+ message AzureMariaDBServer {
1349
1369
  repeated ScanningIssues _scanning_issues = 1;
1350
1370
  google.protobuf.StringValue _a_d_k__name = 2;
1351
1371
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1370,7 +1390,7 @@ message AzureMariaDBServer{
1370
1390
  google.protobuf.StringValue _a_d_k__price = 22;
1371
1391
  }
1372
1392
  //Azure Database for MariaDB is a relational database service in the Microsoft cloud. Azure Database for MariaDB is based on the MariaDB community edition.
1373
- message AzureMariaDBDatabase{
1393
+ message AzureMariaDBDatabase {
1374
1394
  repeated ScanningIssues _scanning_issues = 1;
1375
1395
  google.protobuf.StringValue _a_d_k__name = 2;
1376
1396
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1378,14 +1398,14 @@ message AzureMariaDBDatabase{
1378
1398
  google.protobuf.StringValue _properties_charset = 5;
1379
1399
  }
1380
1400
  //Firewalls prevent all access to your database server until you specify which computers have permission. The firewall grants access to the server based on the originating IP address of each request.
1381
- message AzureMariaDBFirewallRule{
1401
+ message AzureMariaDBFirewallRule {
1382
1402
  repeated ScanningIssues _scanning_issues = 1;
1383
1403
  google.protobuf.StringValue _name = 2;
1384
1404
  google.protobuf.StringValue _properties_start_ip_address = 3;
1385
1405
  google.protobuf.StringValue _properties_end_ip_address = 4;
1386
1406
  }
1387
1407
  //Virtual network rules are one firewall security feature that controls whether your Azure Database for MariaDB server accepts communications that are sent from particular subnets in virtual networks.
1388
- message AzureMariaDBVirtualNetworkRule{
1408
+ message AzureMariaDBVirtualNetworkRule {
1389
1409
  repeated ScanningIssues _scanning_issues = 1;
1390
1410
  google.protobuf.StringValue _name = 2;
1391
1411
  google.protobuf.StringValue _vnet_name = 3;
@@ -1394,8 +1414,8 @@ message AzureMariaDBVirtualNetworkRule{
1394
1414
  google.protobuf.StringValue _endpoint_status = 6;
1395
1415
  google.protobuf.StringValue _properties_state = 7;
1396
1416
  }
1397
- //Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet.
1398
- message AzureMariaPrivateEndpointConnection{
1417
+ //Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet.
1418
+ message AzureMariaPrivateEndpointConnection {
1399
1419
  repeated ScanningIssues _scanning_issues = 1;
1400
1420
  google.protobuf.StringValue _a_d_k__name = 2;
1401
1421
  google.protobuf.StringValue _state = 3;
@@ -1403,7 +1423,7 @@ message AzureMariaPrivateEndpointConnection{
1403
1423
  google.protobuf.StringValue _request_response_message = 5;
1404
1424
  }
1405
1425
  //Send push notifications to any platform from any back end.
1406
- message AzureMicrosoftNotificationHub{
1426
+ message AzureMicrosoftNotificationHub {
1407
1427
  repeated ScanningIssues _scanning_issues = 1;
1408
1428
  google.protobuf.StringValue _a_d_k__name = 2;
1409
1429
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1434,7 +1454,7 @@ message AzureMicrosoftNotificationHub{
1434
1454
  google.protobuf.StringValue _a_d_k__price = 28;
1435
1455
  }
1436
1456
  //Simplify the deployment, management, and operations of Kubernetes.
1437
- message AzureMicrosoftAKS{
1457
+ message AzureMicrosoftAKS {
1438
1458
  repeated ScanningIssues _scanning_issues = 1;
1439
1459
  google.protobuf.StringValue _a_d_k__name = 2;
1440
1460
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1455,7 +1475,7 @@ message AzureMicrosoftAKS{
1455
1475
  google.protobuf.StringValue _a_d_k__price = 18;
1456
1476
  }
1457
1477
  //Profile for the container service agent pool.
1458
- message AzureContainerServiceAgentPoolProfile{
1478
+ message AzureContainerServiceAgentPoolProfile {
1459
1479
  repeated ScanningIssues _scanning_issues = 1;
1460
1480
  google.protobuf.StringValue _name = 2;
1461
1481
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1467,7 +1487,7 @@ message AzureContainerServiceAgentPoolProfile{
1467
1487
  google.protobuf.Int32Value _count = 9;
1468
1488
  }
1469
1489
  //Publish APIs to developers, partners, and employees securely and at scale
1470
- message AzureMicrosoftApimService{
1490
+ message AzureMicrosoftApimService {
1471
1491
  repeated ScanningIssues _scanning_issues = 1;
1472
1492
  google.protobuf.StringValue _a_d_k__name = 2;
1473
1493
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1490,7 +1510,7 @@ message AzureMicrosoftApimService{
1490
1510
  google.protobuf.StringValue _a_d_k__price = 20;
1491
1511
  }
1492
1512
  //Easily build and consume Cloud APIs
1493
- message AzureMicrosoftApiContract{
1513
+ message AzureMicrosoftApiContract {
1494
1514
  repeated ScanningIssues _scanning_issues = 1;
1495
1515
  google.protobuf.StringValue _products = 2;
1496
1516
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1501,7 +1521,7 @@ message AzureMicrosoftApiContract{
1501
1521
  google.protobuf.StringValue _path = 8;
1502
1522
  }
1503
1523
  //Azure Application Gateway is a web traffic load balancer that enables you to manage traffic to your web applications.
1504
- message AzureMicrosoftApplicationGateway{
1524
+ message AzureMicrosoftApplicationGateway {
1505
1525
  repeated ScanningIssues _scanning_issues = 1;
1506
1526
  google.protobuf.StringValue _a_d_k__name = 2;
1507
1527
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1535,19 +1555,19 @@ message AzureMicrosoftApplicationGateway{
1535
1555
  google.protobuf.StringValue _a_d_k__price = 31;
1536
1556
  }
1537
1557
  //The backend pool defines the group of resources that will serve traffic for a given load-balancing rule.
1538
- message AzureMicrosoftApplicationGatewayBackendAddressPool{
1558
+ message AzureMicrosoftApplicationGatewayBackendAddressPool {
1539
1559
  repeated ScanningIssues _scanning_issues = 1;
1540
1560
  google.protobuf.StringValue _name = 2;
1541
1561
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
1542
1562
  repeated AzureMicrosoftApplicationGatewayBackendAddress _back_end_adresses = 4;
1543
1563
  repeated AzureMicrosoftNetworkInterfaceIPConfiguration _back_end_i_p_confs = 5;
1544
1564
  }
1545
- message AzureMicrosoftApplicationGatewayBackendAddress{
1565
+ message AzureMicrosoftApplicationGatewayBackendAddress {
1546
1566
  google.protobuf.StringValue _target_type = 1;
1547
1567
  google.protobuf.StringValue _target = 2;
1548
1568
  }
1549
1569
  //Private and (optionally) public IP addresses are assigned to one or more IP configurations assigned to a network interface.
1550
- message AzureMicrosoftNetworkInterfaceIPConfiguration{
1570
+ message AzureMicrosoftNetworkInterfaceIPConfiguration {
1551
1571
  repeated ScanningIssues _scanning_issues = 1;
1552
1572
  google.protobuf.StringValue _public_i_p = 2;
1553
1573
  google.protobuf.StringValue _private_i_p_address = 3;
@@ -1557,14 +1577,14 @@ message AzureMicrosoftNetworkInterfaceIPConfiguration{
1557
1577
  google.protobuf.StringValue _public_ip_address_a_d_k__name = 7;
1558
1578
  }
1559
1579
  //Frontend IP Configuration allows you to attach a private or public IP to your load balancing solution.
1560
- message AzureMicrosoftApplicationGatewayFrontEndIPConfiguration{
1580
+ message AzureMicrosoftApplicationGatewayFrontEndIPConfiguration {
1561
1581
  repeated ScanningIssues _scanning_issues = 1;
1562
1582
  google.protobuf.StringValue _name = 2;
1563
1583
  google.protobuf.StringValue _private_i_p_address = 3;
1564
1584
  google.protobuf.StringValue _private_i_p_allocation_method = 4;
1565
1585
  google.protobuf.StringValue _public_i_p_name = 5;
1566
1586
  }
1567
- message AzureMicrosoftApplicationGatewayRequestRoutingRule{
1587
+ message AzureMicrosoftApplicationGatewayRequestRoutingRule {
1568
1588
  google.protobuf.StringValue _name = 1;
1569
1589
  google.protobuf.StringValue _rule_type = 2;
1570
1590
  google.protobuf.StringValue _backend_address_pool_name = 3;
@@ -1573,17 +1593,17 @@ message AzureMicrosoftApplicationGatewayRequestRoutingRule{
1573
1593
  google.protobuf.StringValue _url_path_map_name = 6;
1574
1594
  google.protobuf.StringValue _rewrite_rule_set_name = 7;
1575
1595
  }
1576
- message AzureMicrosoftApplicationGatewayPathMap{
1596
+ message AzureMicrosoftApplicationGatewayPathMap {
1577
1597
  google.protobuf.StringValue _name = 1;
1578
1598
  repeated AzureMicrosoftApplicationGatewayPathRule _path_rules = 2;
1579
1599
  }
1580
- message AzureMicrosoftApplicationGatewayPathRule{
1600
+ message AzureMicrosoftApplicationGatewayPathRule {
1581
1601
  google.protobuf.StringValue _formatted_path = 1;
1582
1602
  google.protobuf.StringValue _backend_address_pool_name = 2;
1583
1603
  google.protobuf.StringValue _http_settings_name = 3;
1584
1604
  google.protobuf.StringValue _rewrite_rule_set_name = 4;
1585
1605
  }
1586
- message AzureApplicationGatewayBackendHttpSettings{
1606
+ message AzureApplicationGatewayBackendHttpSettings {
1587
1607
  google.protobuf.StringValue _name = 1;
1588
1608
  google.protobuf.StringValue _protocol = 2;
1589
1609
  google.protobuf.Int32Value _port = 3;
@@ -1594,7 +1614,7 @@ message AzureApplicationGatewayBackendHttpSettings{
1594
1614
  google.protobuf.StringValue _host_name = 8;
1595
1615
  google.protobuf.StringValue _probe_name = 9;
1596
1616
  }
1597
- message AzureApplicationGatewayHealthProbe{
1617
+ message AzureApplicationGatewayHealthProbe {
1598
1618
  google.protobuf.StringValue _name = 1;
1599
1619
  google.protobuf.StringValue _protocol = 2;
1600
1620
  google.protobuf.StringValue _host = 3;
@@ -1603,22 +1623,22 @@ message AzureApplicationGatewayHealthProbe{
1603
1623
  google.protobuf.StringValue _formatted_timeout = 6;
1604
1624
  google.protobuf.Int32Value _unhealthy_threshold = 7;
1605
1625
  }
1606
- message AzureApplicationGatewayRewriteRuleSet{
1626
+ message AzureApplicationGatewayRewriteRuleSet {
1607
1627
  google.protobuf.StringValue _name = 1;
1608
1628
  repeated AzureApplicationGatewayRewriteRule _rewrite_rules = 2;
1609
1629
  }
1610
- message AzureApplicationGatewayRewriteRule{
1630
+ message AzureApplicationGatewayRewriteRule {
1611
1631
  google.protobuf.StringValue _name = 1;
1612
1632
  repeated AzureApplicationGatewayRewriteRuleCondition _conditions = 2;
1613
1633
  }
1614
- message AzureApplicationGatewayRewriteRuleCondition{
1634
+ message AzureApplicationGatewayRewriteRuleCondition {
1615
1635
  google.protobuf.StringValue _statement = 1;
1616
1636
  google.protobuf.StringValue _case_sensitive = 2;
1617
1637
  google.protobuf.StringValue _variable_type = 3;
1618
1638
  google.protobuf.StringValue _condition = 4;
1619
1639
  }
1620
1640
  //Application security groups enable you to configure network security as a natural extension of an application's structure, allowing you to group virtual machines and define network security policies based on those groups.
1621
- message AzureMicrosoftApplicationSecurityGroup{
1641
+ message AzureMicrosoftApplicationSecurityGroup {
1622
1642
  repeated ScanningIssues _scanning_issues = 1;
1623
1643
  google.protobuf.StringValue _a_d_k__name = 2;
1624
1644
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1633,7 +1653,7 @@ message AzureMicrosoftApplicationSecurityGroup{
1633
1653
  repeated CDKRule _warnings = 12;
1634
1654
  }
1635
1655
  //Provides a fully isolated and dedicated environment for securely running App Service apps at high scale.
1636
- message AzureMicrosoftAppServiceEnvironment{
1656
+ message AzureMicrosoftAppServiceEnvironment {
1637
1657
  repeated ScanningIssues _scanning_issues = 1;
1638
1658
  google.protobuf.StringValue _a_d_k__name = 2;
1639
1659
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1644,7 +1664,7 @@ message AzureMicrosoftAppServiceEnvironment{
1644
1664
  google.protobuf.StringValue _internal_load_balancing_mode = 8;
1645
1665
  google.protobuf.StringValue _multi_size = 9;
1646
1666
  google.protobuf.Int32Value _front_end_scale_factor = 10;
1647
- google.protobuf.StringValue _status = 11;//. Possible Values are : Preparing,Ready,Scaling,Deleting
1667
+ google.protobuf.StringValue _status = 11; //. Possible Values are : Preparing,Ready,Scaling,Deleting
1648
1668
  google.protobuf.Int32Value _maximum_number_of_machines = 12;
1649
1669
  google.protobuf.Int32Value _multi_role_count = 13;
1650
1670
  repeated CloudockitTag _tags = 14;
@@ -1656,7 +1676,7 @@ message AzureMicrosoftAppServiceEnvironment{
1656
1676
  google.protobuf.StringValue _a_d_k__price = 20;
1657
1677
  }
1658
1678
  //Simplify cloud management with process automation.
1659
- message AzureMicrosoftAutomationAccount{
1679
+ message AzureMicrosoftAutomationAccount {
1660
1680
  repeated ScanningIssues _scanning_issues = 1;
1661
1681
  google.protobuf.StringValue _a_d_k__name = 2;
1662
1682
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1672,26 +1692,26 @@ message AzureMicrosoftAutomationAccount{
1672
1692
  google.protobuf.StringValue _a_d_k__price = 13;
1673
1693
  }
1674
1694
  //Run your jobs on simple or complex recurring schedules.
1675
- message AzureMicrosoftSchedule{
1695
+ message AzureMicrosoftSchedule {
1676
1696
  repeated ScanningIssues _scanning_issues = 1;
1677
1697
  google.protobuf.StringValue _name = 2;
1678
1698
  }
1679
1699
  //Automate Azure management tasks and orchestrate actions across external systems from right within Azure.
1680
- message AzureMicrosoftRunbook{
1700
+ message AzureMicrosoftRunbook {
1681
1701
  repeated ScanningIssues _scanning_issues = 1;
1682
1702
  google.protobuf.StringValue _name = 2;
1683
1703
  }
1684
1704
  //Cloud-scale job scheduling and compute management.
1685
- message AzureMicrosoftBatch{
1705
+ message AzureMicrosoftBatch {
1686
1706
  repeated ScanningIssues _scanning_issues = 1;
1687
1707
  google.protobuf.StringValue _a_d_k__name = 2;
1688
1708
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
1689
- google.protobuf.StringValue _provisioning_state = 4;//. Possible Values are : Invalid,Creating,Deleting,Succeeded,Failed,Cancelled
1709
+ google.protobuf.StringValue _provisioning_state = 4; //. Possible Values are : Invalid,Creating,Deleting,Succeeded,Failed,Cancelled
1690
1710
  google.protobuf.StringValue _location = 5;
1691
1711
  google.protobuf.StringValue _account_endpoint = 6;
1692
1712
  google.protobuf.Int32Value _pool_quota = 7;
1693
1713
  google.protobuf.Int32Value _active_job_and_job_schedule_quota = 8;
1694
- google.protobuf.StringValue _pool_allocation_mode = 9;//. Possible Values are : BatchService,UserSubscription
1714
+ google.protobuf.StringValue _pool_allocation_mode = 9; //. Possible Values are : BatchService,UserSubscription
1695
1715
  google.protobuf.Int32Value _dedicated_core_quota = 10;
1696
1716
  google.protobuf.Int32Value _low_priority_core_quota = 11;
1697
1717
  repeated CloudockitTag _tags = 12;
@@ -1703,7 +1723,7 @@ message AzureMicrosoftBatch{
1703
1723
  google.protobuf.StringValue _a_d_k__price = 18;
1704
1724
  }
1705
1725
  //Enabling quick, repeatable creation of governed environments
1706
- message AzureMicrosoftBlueprint{
1726
+ message AzureMicrosoftBlueprint {
1707
1727
  repeated ScanningIssues _scanning_issues = 1;
1708
1728
  google.protobuf.StringValue _a_d_k__name = 2;
1709
1729
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1724,14 +1744,14 @@ message AzureMicrosoftBlueprint{
1724
1744
  google.protobuf.StringValue _a_d_k__price = 18;
1725
1745
  }
1726
1746
  //Create, host, and share packages with your team.
1727
- message AzureMicrosoftArtifact{
1747
+ message AzureMicrosoftArtifact {
1728
1748
  repeated ScanningIssues _scanning_issues = 1;
1729
1749
  google.protobuf.StringValue _display_name = 2;
1730
1750
  google.protobuf.StringValue _resource_type = 3;
1731
1751
  google.protobuf.StringValue _display_parameters = 4;
1732
1752
  }
1733
1753
  //A managed service purpose-built for bot development.
1734
- message AzureMicrosoftBotService{
1754
+ message AzureMicrosoftBotService {
1735
1755
  repeated ScanningIssues _scanning_issues = 1;
1736
1756
  google.protobuf.StringValue _a_d_k__name = 2;
1737
1757
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1754,7 +1774,7 @@ message AzureMicrosoftBotService{
1754
1774
  google.protobuf.StringValue _a_d_k__price = 20;
1755
1775
  }
1756
1776
  //Ensure secure, reliable content delivery with broad global reach.
1757
- message AzureMicrosoftCDNProfile{
1777
+ message AzureMicrosoftCDNProfile {
1758
1778
  repeated ScanningIssues _scanning_issues = 1;
1759
1779
  google.protobuf.StringValue _a_d_k__name = 2;
1760
1780
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1770,10 +1790,10 @@ message AzureMicrosoftCDNProfile{
1770
1790
  google.protobuf.StringValue _a_d_k__price = 13;
1771
1791
  }
1772
1792
  //Endpoints allow you to secure your critical Azure service resources to only your virtual networks.
1773
- message AzureMicrosoftCDNEndPoint{
1793
+ message AzureMicrosoftCDNEndPoint {
1774
1794
  repeated ScanningIssues _scanning_issues = 1;
1775
1795
  google.protobuf.StringValue _host_name = 2;
1776
- google.protobuf.StringValue _query_string_caching_behavior = 3;//. Possible Values are : IgnoreQueryString,BypassCaching,UseQueryString,NotSet
1796
+ google.protobuf.StringValue _query_string_caching_behavior = 3; //. Possible Values are : IgnoreQueryString,BypassCaching,UseQueryString,NotSet
1777
1797
  google.protobuf.StringValue _origin_path = 4;
1778
1798
  google.protobuf.StringValue _origin_host_header = 5;
1779
1799
  google.protobuf.BoolValue _is_compression_enabled = 6;
@@ -1781,7 +1801,7 @@ message AzureMicrosoftCDNEndPoint{
1781
1801
  google.protobuf.BoolValue _is_https_allowed = 8;
1782
1802
  }
1783
1803
  //Add smart API capabilities to enable contextual interactions
1784
- message AzureMicrosoftCognitiveServicesAccount{
1804
+ message AzureMicrosoftCognitiveServicesAccount {
1785
1805
  repeated ScanningIssues _scanning_issues = 1;
1786
1806
  google.protobuf.StringValue _a_d_k__name = 2;
1787
1807
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1802,7 +1822,7 @@ message AzureMicrosoftCognitiveServicesAccount{
1802
1822
  google.protobuf.StringValue _a_d_k__price = 18;
1803
1823
  }
1804
1824
  //Azure virtual machine scale sets let you create and manage a group of identical, load balanced VMs. The number of VM instances can automatically increase or decrease in response to demand or a defined schedule. Scale sets provide high availability to your applications, and allow you to centrally manage, configure, and update a large number of VMs. With virtual machine scale sets, you can build large-scale services for areas such as compute, big data, and container workloads.
1805
- message AzureMicrosoftComputeScaleSet{
1825
+ message AzureMicrosoftComputeScaleSet {
1806
1826
  repeated ScanningIssues _scanning_issues = 1;
1807
1827
  google.protobuf.StringValue _a_d_k__name = 2;
1808
1828
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1821,8 +1841,8 @@ message AzureMicrosoftComputeScaleSet{
1821
1841
  google.protobuf.StringValue _img_ref_sku = 16;
1822
1842
  google.protobuf.StringValue _img_ref_version = 17;
1823
1843
  google.protobuf.StringValue _o_s_disk_name = 18;
1824
- google.protobuf.StringValue _o_s_disk_os_type = 19;//. Possible Values are : Windows,Linux
1825
- google.protobuf.StringValue _o_s_disk_caching = 20;//. Possible Values are : None,ReadOnly,ReadWrite
1844
+ google.protobuf.StringValue _o_s_disk_os_type = 19; //. Possible Values are : Windows,Linux
1845
+ google.protobuf.StringValue _o_s_disk_caching = 20; //. Possible Values are : None,ReadOnly,ReadWrite
1826
1846
  repeated AzureMicrosoftComputeScaleSetVM _v_ms = 21;
1827
1847
  repeated CloudockitTag _tags = 22;
1828
1848
  repeated AzureMicrosoftAuthorizationRoleAssignment _role_assignments = 23;
@@ -1833,20 +1853,20 @@ message AzureMicrosoftComputeScaleSet{
1833
1853
  google.protobuf.StringValue _a_d_k__price = 28;
1834
1854
  }
1835
1855
  //Manage and scale up to thousands of Linux and Windows virtual machines.
1836
- message AzureMicrosoftComputeScaleSetNetworkConfiguration{
1856
+ message AzureMicrosoftComputeScaleSetNetworkConfiguration {
1837
1857
  repeated ScanningIssues _scanning_issues = 1;
1838
1858
  google.protobuf.StringValue _a_d_k__name = 2;
1839
1859
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
1840
1860
  repeated AzureMicrosoftComputeScaleSetIPConf _i_pconfs = 4;
1841
1861
  }
1842
1862
  //Azure virtual machine scale sets let you create and manage a group of identical, load balanced VMs. The number of VM instances can automatically increase or decrease in response to demand or a defined schedule. Scale sets provide high availability to your applications, and allow you to centrally manage, configure, and update a large number of VMs. With virtual machine scale sets, you can build large-scale services for areas such as compute, big data, and container workloads.
1843
- message AzureMicrosoftComputeScaleSetIPConf{
1863
+ message AzureMicrosoftComputeScaleSetIPConf {
1844
1864
  repeated ScanningIssues _scanning_issues = 1;
1845
1865
  google.protobuf.StringValue _name = 2;
1846
1866
  google.protobuf.StringValue _address_pool = 3;
1847
1867
  }
1848
1868
  //Manage and scale up to thousands of Linux and Windows virtual machines.
1849
- message AzureMicrosoftComputeScaleSetVM{
1869
+ message AzureMicrosoftComputeScaleSetVM {
1850
1870
  repeated ScanningIssues _scanning_issues = 1;
1851
1871
  google.protobuf.StringValue _a_d_k__name = 2;
1852
1872
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1860,7 +1880,7 @@ message AzureMicrosoftComputeScaleSetVM{
1860
1880
  repeated AzureMicrosoftNetworkLoadBalancer _microsoft_network_load_balancer = 11;
1861
1881
  }
1862
1882
  //With Azure Load Balancer, you can scale your applications and create high availability for your services. Load Balancer supports inbound and outbound scenarios, provides low latency and high throughput, and scales up to millions of flows for all TCP and UDP applications.
1863
- message AzureMicrosoftNetworkLoadBalancer{
1883
+ message AzureMicrosoftNetworkLoadBalancer {
1864
1884
  repeated ScanningIssues _scanning_issues = 1;
1865
1885
  google.protobuf.StringValue _a_d_k__g_u_i_d = 2;
1866
1886
  google.protobuf.StringValue _a_d_k__name = 3;
@@ -1890,7 +1910,7 @@ message AzureMicrosoftNetworkLoadBalancer{
1890
1910
  google.protobuf.StringValue _a_d_k__price = 27;
1891
1911
  }
1892
1912
  //Create Linux and Windows virtual machines (VMs) in seconds.
1893
- message AzureMicrosoftCompute{
1913
+ message AzureMicrosoftCompute {
1894
1914
  repeated ScanningIssues _scanning_issues = 1;
1895
1915
  google.protobuf.StringValue _a_d_k__name = 2;
1896
1916
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1939,8 +1959,8 @@ message AzureMicrosoftCompute{
1939
1959
  repeated ResourceBilling _resources_billing = 46;
1940
1960
  google.protobuf.StringValue _a_d_k__price = 47;
1941
1961
  }
1942
- //A network interface enables an Azure Virtual Machine to communicate with internet, Azure, and on-premises resources. When creating a virtual machine using the Azure portal, the portal creates one network interface with default settings for you.
1943
- message AzureMicrosoftNetworkInterface{
1962
+ //A network interface enables an Azure Virtual Machine to communicate with internet, Azure, and on-premises resources. When creating a virtual machine using the Azure portal, the portal creates one network interface with default settings for you.
1963
+ message AzureMicrosoftNetworkInterface {
1944
1964
  repeated ScanningIssues _scanning_issues = 1;
1945
1965
  google.protobuf.StringValue _name = 2;
1946
1966
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1951,7 +1971,7 @@ message AzureMicrosoftNetworkInterface{
1951
1971
  google.protobuf.BoolValue _enable_i_p_forwarding = 8;
1952
1972
  google.protobuf.StringValue _location = 9;
1953
1973
  google.protobuf.StringValue _mac_address = 10;
1954
- google.protobuf.StringValue _accelerated_networking_state = 11;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
1974
+ google.protobuf.StringValue _accelerated_networking_state = 11; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
1955
1975
  repeated CloudockitTag _tags = 12;
1956
1976
  repeated AzureMicrosoftNetworkInterfaceIPConfiguration _microsoft_network_interfaces_i_p_configuration = 13;
1957
1977
  google.protobuf.StringValue _public_ip_address = 14;
@@ -1959,7 +1979,7 @@ message AzureMicrosoftNetworkInterface{
1959
1979
  google.protobuf.StringValue _virtual_machine_name = 16;
1960
1980
  }
1961
1981
  //Every virtual machine has one attached operating system disk. That OS disk has a pre-installed OS, which was selected when the VM was created. This disk has a maximum capacity of 2, 048 GiB.
1962
- message AzureMicrosoftComputeOSDisk{
1982
+ message AzureMicrosoftComputeOSDisk {
1963
1983
  repeated ScanningIssues _scanning_issues = 1;
1964
1984
  google.protobuf.StringValue _a_d_k__name = 2;
1965
1985
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -1976,7 +1996,7 @@ message AzureMicrosoftComputeOSDisk{
1976
1996
  google.protobuf.StringValue _availability_zone = 14;
1977
1997
  }
1978
1998
  //Software installed in a Windows based Server
1979
- message AzureMicrosoftComputePS1InstalledSoftware{
1999
+ message AzureMicrosoftComputePS1InstalledSoftware {
1980
2000
  repeated ScanningIssues _scanning_issues = 1;
1981
2001
  google.protobuf.StringValue _display_name = 2;
1982
2002
  google.protobuf.StringValue _display_version = 3;
@@ -1984,18 +2004,18 @@ message AzureMicrosoftComputePS1InstalledSoftware{
1984
2004
  google.protobuf.StringValue _install_date = 5;
1985
2005
  }
1986
2006
  //Feature in a Windows based server
1987
- message AzureMicrosoftComputePS1ActivatedFeature{
2007
+ message AzureMicrosoftComputePS1ActivatedFeature {
1988
2008
  repeated ScanningIssues _scanning_issues = 1;
1989
2009
  google.protobuf.StringValue _name = 2;
1990
2010
  }
1991
2011
  //Azure virtual machine (VM) extensions are small applications that provide post-deployment configuration and automation tasks on Azure VMs. For example, if a virtual machine requires software installation, anti-virus protection, or to run a script inside of it, a VM extension can be used. Azure VM extensions can be run with the Azure CLI, PowerShell, Azure Resource Manager templates, and the Azure portal. Extensions can be bundled with a new VM deployment, or run against any existing system.
1992
- message AzureMicrosoftComputePS1StartupCommand{
2012
+ message AzureMicrosoftComputePS1StartupCommand {
1993
2013
  repeated ScanningIssues _scanning_issues = 1;
1994
2014
  google.protobuf.StringValue _name = 2;
1995
2015
  google.protobuf.StringValue _command = 3;
1996
2016
  }
1997
2017
  //Drive attached in a Windows based server
1998
- message AzureMicrosoftComputePS1Drive{
2018
+ message AzureMicrosoftComputePS1Drive {
1999
2019
  repeated ScanningIssues _scanning_issues = 1;
2000
2020
  google.protobuf.StringValue _device_i_d = 2;
2001
2021
  google.protobuf.StringValue _volume_name = 3;
@@ -2003,14 +2023,14 @@ message AzureMicrosoftComputePS1Drive{
2003
2023
  google.protobuf.StringValue _free_space_display = 5;
2004
2024
  }
2005
2025
  //Service in a Windows based server
2006
- message AzureMicrosoftComputePS1Service{
2026
+ message AzureMicrosoftComputePS1Service {
2007
2027
  repeated ScanningIssues _scanning_issues = 1;
2008
2028
  google.protobuf.StringValue _display_name = 2;
2009
2029
  google.protobuf.StringValue _started = 3;
2010
2030
  google.protobuf.StringValue _start_mode = 4;
2011
2031
  }
2012
2032
  //Azure virtual machine (VM) extensions are small applications that provide post-deployment configuration and automation tasks on Azure VMs.
2013
- message AzureMicrosoftComputeVirtualMachineExtension{
2033
+ message AzureMicrosoftComputeVirtualMachineExtension {
2014
2034
  repeated ScanningIssues _scanning_issues = 1;
2015
2035
  google.protobuf.StringValue _name = 2;
2016
2036
  google.protobuf.StringValue _virtual_machine_extension_type = 3;
@@ -2018,7 +2038,7 @@ message AzureMicrosoftComputeVirtualMachineExtension{
2018
2038
  google.protobuf.StringValue _provisioning_state = 5;
2019
2039
  }
2020
2040
  //Easily run containers on Azure without managing servers.
2021
- message AzureMicrosoftContainerGroup{
2041
+ message AzureMicrosoftContainerGroup {
2022
2042
  repeated ScanningIssues _scanning_issues = 1;
2023
2043
  google.protobuf.StringValue _a_d_k__name = 2;
2024
2044
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2041,7 +2061,7 @@ message AzureMicrosoftContainerGroup{
2041
2061
  google.protobuf.StringValue _a_d_k__price = 20;
2042
2062
  }
2043
2063
  //Easily run containers on Azure without managing servers.
2044
- message AzureMicrosoftContainerInstance{
2064
+ message AzureMicrosoftContainerInstance {
2045
2065
  repeated ScanningIssues _scanning_issues = 1;
2046
2066
  google.protobuf.StringValue _name = 2;
2047
2067
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2053,7 +2073,7 @@ message AzureMicrosoftContainerInstance{
2053
2073
  google.protobuf.StringValue _docker_tag_id = 9;
2054
2074
  }
2055
2075
  //Store and manage container images across all types of Azure deployments.
2056
- message AzureMicrosoftContainerRegistry{
2076
+ message AzureMicrosoftContainerRegistry {
2057
2077
  repeated ScanningIssues _scanning_issues = 1;
2058
2078
  google.protobuf.StringValue _a_d_k__name = 2;
2059
2079
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2072,7 +2092,7 @@ message AzureMicrosoftContainerRegistry{
2072
2092
  google.protobuf.StringValue _a_d_k__price = 16;
2073
2093
  }
2074
2094
  //A Docker Repository.
2075
- message DockerRepository{
2095
+ message DockerRepository {
2076
2096
  repeated ScanningIssues _scanning_issues = 1;
2077
2097
  google.protobuf.StringValue _a_d_k__name = 2;
2078
2098
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2081,13 +2101,13 @@ message DockerRepository{
2081
2101
  repeated DockerTag _artifacts = 6;
2082
2102
  }
2083
2103
  //A Docker Tag.
2084
- message DockerTag{
2104
+ message DockerTag {
2085
2105
  repeated ScanningIssues _scanning_issues = 1;
2086
2106
  google.protobuf.StringValue _tag = 2;
2087
2107
  google.protobuf.StringValue _id = 3;
2088
2108
  }
2089
2109
  //Globally distributed, multi-model database for any scale
2090
- message AzureMicrosoftCosmosDB{
2110
+ message AzureMicrosoftCosmosDB {
2091
2111
  repeated ScanningIssues _scanning_issues = 1;
2092
2112
  google.protobuf.StringValue _a_d_k__name = 2;
2093
2113
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2097,7 +2117,7 @@ message AzureMicrosoftCosmosDB{
2097
2117
  google.protobuf.StringValue _server_version = 7;
2098
2118
  repeated AzureMicrosoftCosmosDBLocation _read_locations = 8;
2099
2119
  repeated AzureMicrosoftCosmosDBLocation _write_locations = 9;
2100
- google.protobuf.StringValue _consistency_policy_default_consistency_level = 10;//. Possible Values are : Eventual,Session,BoundedStaleness,Strong,ConsistentPrefix
2120
+ google.protobuf.StringValue _consistency_policy_default_consistency_level = 10; //. Possible Values are : Eventual,Session,BoundedStaleness,Strong,ConsistentPrefix
2101
2121
  google.protobuf.Int32Value _consistency_policy_max_interval_in_seconds = 11;
2102
2122
  google.protobuf.Int64Value _consistency_policy_max_staleness_prefix = 12;
2103
2123
  repeated AzureMicrosoftVirtualNetwork _v_network_rules = 13;
@@ -2111,11 +2131,11 @@ message AzureMicrosoftCosmosDB{
2111
2131
  repeated ResourceBilling _resources_billing = 21;
2112
2132
  google.protobuf.StringValue _a_d_k__price = 22;
2113
2133
  }
2114
- message AzureMicrosoftCosmosDBLocation{
2134
+ message AzureMicrosoftCosmosDBLocation {
2115
2135
  google.protobuf.StringValue _location_name = 1;
2116
2136
  }
2117
2137
  //An Azure Virtual Network (VNet) is a representation of your own network in the cloud. It is a logical isolation of the Azure cloud dedicated to your subscription. You can use VNets to provision and manage virtual private networks (VPNs) in Azure and, optionally, link the VNets with other VNets in Azure, or with your on-premises IT infrastructure to create hybrid or cross-premises solutions.
2118
- message AzureMicrosoftVirtualNetwork{
2138
+ message AzureMicrosoftVirtualNetwork {
2119
2139
  repeated ScanningIssues _scanning_issues = 1;
2120
2140
  google.protobuf.StringValue _name = 2;
2121
2141
  google.protobuf.Int32Value _number_of_subnets = 3;
@@ -2137,8 +2157,8 @@ message AzureMicrosoftVirtualNetwork{
2137
2157
  repeated ResourceBilling _resources_billing = 19;
2138
2158
  google.protobuf.StringValue _a_d_k__price = 20;
2139
2159
  }
2140
- //Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet.
2141
- message AzureCosmosDBPrivateEndpoint{
2160
+ //Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet.
2161
+ message AzureCosmosDBPrivateEndpoint {
2142
2162
  repeated ScanningIssues _scanning_issues = 1;
2143
2163
  google.protobuf.StringValue _connection_name = 2;
2144
2164
  google.protobuf.StringValue _state = 3;
@@ -2146,7 +2166,7 @@ message AzureCosmosDBPrivateEndpoint{
2146
2166
  google.protobuf.StringValue _description = 5;
2147
2167
  }
2148
2168
  //Simple and comprehensive ETL and ELT processes without coding or maintenance
2149
- message AzureMicrosoftDataFactory{
2169
+ message AzureMicrosoftDataFactory {
2150
2170
  repeated ScanningIssues _scanning_issues = 1;
2151
2171
  google.protobuf.StringValue _a_d_k__name = 2;
2152
2172
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2167,7 +2187,7 @@ message AzureMicrosoftDataFactory{
2167
2187
  google.protobuf.StringValue _a_d_k__price = 18;
2168
2188
  }
2169
2189
  //ETL Process in Azure DataFactory
2170
- message AzureMicrosoftPipeline{
2190
+ message AzureMicrosoftPipeline {
2171
2191
  repeated ScanningIssues _scanning_issues = 1;
2172
2192
  google.protobuf.StringValue _a_d_k__name = 2;
2173
2193
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2176,13 +2196,13 @@ message AzureMicrosoftPipeline{
2176
2196
  google.protobuf.StringValue _data_factory_name = 6;
2177
2197
  repeated AzureMicrosoftPipelineActivity _activities = 7;
2178
2198
  }
2179
- message AzureMicrosoftPipelineActivity{
2199
+ message AzureMicrosoftPipelineActivity {
2180
2200
  google.protobuf.StringValue _name = 1;
2181
2201
  google.protobuf.StringValue _description = 2;
2182
2202
  google.protobuf.StringValue _activity_dependencies = 3;
2183
2203
  }
2184
- //Linked services are much like connection strings, which define the connection information that's needed for Data Factory to connect to external resources. Think of it this way: a linked service defines the connection to the data source, and a dataset represents the structure of the data.
2185
- message AzureMicrosoftLinkedServiceResource{
2204
+ //Linked services are much like connection strings, which define the connection information that's needed for Data Factory to connect to external resources. Think of it this way: a linked service defines the connection to the data source, and a dataset represents the structure of the data.
2205
+ message AzureMicrosoftLinkedServiceResource {
2186
2206
  repeated ScanningIssues _scanning_issues = 1;
2187
2207
  google.protobuf.StringValue _a_d_k__name = 2;
2188
2208
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2191,7 +2211,7 @@ message AzureMicrosoftLinkedServiceResource{
2191
2211
  google.protobuf.StringValue _linked_service_data_factory_name = 6;
2192
2212
  }
2193
2213
  //Datasets represent data structures within the data stores, which simply point to or reference the data you want to use in your activities as inputs or outputs.
2194
- message AzureMicrosoftDatasetResource{
2214
+ message AzureMicrosoftDatasetResource {
2195
2215
  repeated ScanningIssues _scanning_issues = 1;
2196
2216
  google.protobuf.StringValue _a_d_k__name = 2;
2197
2217
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2201,7 +2221,7 @@ message AzureMicrosoftDatasetResource{
2201
2221
  google.protobuf.StringValue _dataset_data_factory_name = 7;
2202
2222
  }
2203
2223
  //Simple and comprehensive ETL and ELT processes without coding or maintenance
2204
- message AzureMicrosoftDataFactoryV1{
2224
+ message AzureMicrosoftDataFactoryV1 {
2205
2225
  repeated ScanningIssues _scanning_issues = 1;
2206
2226
  google.protobuf.StringValue _a_d_k__name = 2;
2207
2227
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2220,7 +2240,7 @@ message AzureMicrosoftDataFactoryV1{
2220
2240
  google.protobuf.StringValue _a_d_k__price = 16;
2221
2241
  }
2222
2242
  //ETL Process in Azure DataFactory
2223
- message AzureMicrosoftPipelineV1{
2243
+ message AzureMicrosoftPipelineV1 {
2224
2244
  repeated ScanningIssues _scanning_issues = 1;
2225
2245
  google.protobuf.StringValue _a_d_k__name = 2;
2226
2246
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2230,8 +2250,8 @@ message AzureMicrosoftPipelineV1{
2230
2250
  google.protobuf.StringValue _pipeline_properties_provisioning_state = 7;
2231
2251
  google.protobuf.StringValue _data_factory_name = 8;
2232
2252
  }
2233
- //Linked services are much like connection strings, which define the connection information that's needed for Data Factory to connect to external resources. Think of it this way: a linked service defines the connection to the data source, and a dataset represents the structure of the data.
2234
- message AzureMicrosoftLinkedServiceV1{
2253
+ //Linked services are much like connection strings, which define the connection information that's needed for Data Factory to connect to external resources. Think of it this way: a linked service defines the connection to the data source, and a dataset represents the structure of the data.
2254
+ message AzureMicrosoftLinkedServiceV1 {
2235
2255
  repeated ScanningIssues _scanning_issues = 1;
2236
2256
  google.protobuf.StringValue _a_d_k__name = 2;
2237
2257
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2242,7 +2262,7 @@ message AzureMicrosoftLinkedServiceV1{
2242
2262
  google.protobuf.StringValue _data_factory_name = 8;
2243
2263
  }
2244
2264
  //Datasets represent data structures within the data stores, which simply point to or reference the data you want to use in your activities as inputs or outputs.
2245
- message AzureMicrosoftDataSetV1{
2265
+ message AzureMicrosoftDataSetV1 {
2246
2266
  repeated ScanningIssues _scanning_issues = 1;
2247
2267
  google.protobuf.StringValue _a_d_k__name = 2;
2248
2268
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2254,17 +2274,17 @@ message AzureMicrosoftDataSetV1{
2254
2274
  google.protobuf.StringValue _data_factory_name = 9;
2255
2275
  }
2256
2276
  //Massively scalable, secure data lake functionality built on Azure Blob Storage.
2257
- message AzureMicrosoftDataLakeStoreAccount{
2277
+ message AzureMicrosoftDataLakeStoreAccount {
2258
2278
  repeated ScanningIssues _scanning_issues = 1;
2259
2279
  google.protobuf.StringValue _a_d_k__name = 2;
2260
2280
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
2261
2281
  google.protobuf.StringValue _resource_group_name = 4;
2262
- google.protobuf.StringValue _provisioning_state = 5;//. Possible Values are : Failed,Creating,Running,Succeeded,Patching,Suspending,Resuming,Deleting,Deleted,Undeleting,Canceled
2282
+ google.protobuf.StringValue _provisioning_state = 5; //. Possible Values are : Failed,Creating,Running,Succeeded,Patching,Suspending,Resuming,Deleting,Deleted,Undeleting,Canceled
2263
2283
  google.protobuf.StringValue _location = 6;
2264
2284
  google.protobuf.StringValue _endpoint = 7;
2265
- google.protobuf.StringValue _new_tier = 8;//. Possible Values are : Consumption,Commitment1TB,Commitment10TB,Commitment100TB,Commitment500TB,Commitment1PB,Commitment5PB
2266
- google.protobuf.StringValue _firewall_allow_azure_ips = 9;//. Possible Values are : Enabled,Disabled
2267
- google.protobuf.StringValue _firewall_state = 10;//. Possible Values are : Enabled,Disabled
2285
+ google.protobuf.StringValue _new_tier = 8; //. Possible Values are : Consumption,Commitment1TB,Commitment10TB,Commitment100TB,Commitment500TB,Commitment1PB,Commitment5PB
2286
+ google.protobuf.StringValue _firewall_allow_azure_ips = 9; //. Possible Values are : Enabled,Disabled
2287
+ google.protobuf.StringValue _firewall_state = 10; //. Possible Values are : Enabled,Disabled
2268
2288
  repeated AzureMicrosoftVirtualNetwork _virtual_network_rules = 11;
2269
2289
  repeated AzureMicrosoftDataLakeStoreAccountFirewallRule _firewall_rules = 12;
2270
2290
  repeated CloudockitTag _tags = 13;
@@ -2275,13 +2295,13 @@ message AzureMicrosoftDataLakeStoreAccount{
2275
2295
  repeated ResourceBilling _resources_billing = 18;
2276
2296
  google.protobuf.StringValue _a_d_k__price = 19;
2277
2297
  }
2278
- message AzureMicrosoftDataLakeStoreAccountFirewallRule{
2298
+ message AzureMicrosoftDataLakeStoreAccountFirewallRule {
2279
2299
  google.protobuf.StringValue _name = 1;
2280
2300
  google.protobuf.StringValue _start_ip_address = 2;
2281
2301
  google.protobuf.StringValue _end_ip_address = 3;
2282
2302
  }
2283
2303
  //Build reactive, event-driven apps with a fully managed event routing service. Create richer app scenarios by connecting serverless logic to events from multiple sources.
2284
- message AzureMicrosoftEventGrid{
2304
+ message AzureMicrosoftEventGrid {
2285
2305
  repeated ScanningIssues _scanning_issues = 1;
2286
2306
  google.protobuf.StringValue _a_d_k__name = 2;
2287
2307
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2301,7 +2321,7 @@ message AzureMicrosoftEventGrid{
2301
2321
  google.protobuf.StringValue _a_d_k__price = 17;
2302
2322
  }
2303
2323
  //Receive telemetry from millions of devices.
2304
- message AzureMicrosoftEventHubNamespace{
2324
+ message AzureMicrosoftEventHubNamespace {
2305
2325
  repeated ScanningIssues _scanning_issues = 1;
2306
2326
  google.protobuf.StringValue _a_d_k__name = 2;
2307
2327
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2323,19 +2343,19 @@ message AzureMicrosoftEventHubNamespace{
2323
2343
  google.protobuf.StringValue _a_d_k__price = 19;
2324
2344
  }
2325
2345
  //Receive telemetry from millions of devices.
2326
- message AzureMicrosoftEventHubInstance{
2346
+ message AzureMicrosoftEventHubInstance {
2327
2347
  repeated ScanningIssues _scanning_issues = 1;
2328
2348
  google.protobuf.StringValue _name = 2;
2329
2349
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
2330
2350
  google.protobuf.StringValue _resource_group_name = 4;
2331
- google.protobuf.StringValue _status = 5;//. Possible Values are : Active,Disabled,Restoring,SendDisabled,ReceiveDisabled,Creating,Deleting,Renaming,Unknown
2351
+ google.protobuf.StringValue _status = 5; //. Possible Values are : Active,Disabled,Restoring,SendDisabled,ReceiveDisabled,Creating,Deleting,Renaming,Unknown
2332
2352
  google.protobuf.StringValue _created = 6;
2333
2353
  google.protobuf.StringValue _updated = 7;
2334
2354
  google.protobuf.Int64Value _partition_count = 8;
2335
2355
  google.protobuf.Int64Value _message_retention_in_days = 9;
2336
2356
  }
2337
2357
  //Dedicated private network fiber connections to Azure
2338
- message AzureMicrosoftExpressRouteCircuit{
2358
+ message AzureMicrosoftExpressRouteCircuit {
2339
2359
  repeated ScanningIssues _scanning_issues = 1;
2340
2360
  google.protobuf.StringValue _a_d_k__name = 2;
2341
2361
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2358,7 +2378,7 @@ message AzureMicrosoftExpressRouteCircuit{
2358
2378
  google.protobuf.StringValue _a_d_k__price = 20;
2359
2379
  }
2360
2380
  //Dedicated private network fiber connections to Azure
2361
- message AzureMicrosoftExpressRouteCircuitAuthorization{
2381
+ message AzureMicrosoftExpressRouteCircuitAuthorization {
2362
2382
  repeated ScanningIssues _scanning_issues = 1;
2363
2383
  google.protobuf.StringValue _name = 2;
2364
2384
  google.protobuf.StringValue _provisioning_state = 3;
@@ -2366,7 +2386,7 @@ message AzureMicrosoftExpressRouteCircuitAuthorization{
2366
2386
  google.protobuf.StringValue _authorization_key = 5;
2367
2387
  }
2368
2388
  //Dedicated private network fiber connections to Azure
2369
- message AzureMicrosoftExpressRouteCircuitPeering{
2389
+ message AzureMicrosoftExpressRouteCircuitPeering {
2370
2390
  repeated ScanningIssues _scanning_issues = 1;
2371
2391
  google.protobuf.StringValue _peering_type = 2;
2372
2392
  google.protobuf.StringValue _provisioning_state = 3;
@@ -2375,7 +2395,7 @@ message AzureMicrosoftExpressRouteCircuitPeering{
2375
2395
  google.protobuf.StringValue _last_modified_by = 6;
2376
2396
  }
2377
2397
  //Define network and application level rules for traffic filtering across multiple Azure Firewall instances in Secured Virtual Hubs.
2378
- message AzureMicrosoftFirewallPolicy{
2398
+ message AzureMicrosoftFirewallPolicy {
2379
2399
  repeated ScanningIssues _scanning_issues = 1;
2380
2400
  google.protobuf.StringValue _a_d_k__name = 2;
2381
2401
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2386,7 +2406,7 @@ message AzureMicrosoftFirewallPolicy{
2386
2406
  google.protobuf.StringValue _intrusion_detection_mode = 8;
2387
2407
  google.protobuf.StringValue _intrusion_detection_private_ranges = 9;
2388
2408
  google.protobuf.StringValue _dns_servers = 10;
2389
- google.protobuf.StringValue _dns_proxy_enabled = 11;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
2409
+ google.protobuf.StringValue _dns_proxy_enabled = 11; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
2390
2410
  google.protobuf.StringValue _parent_policy_name = 12;
2391
2411
  google.protobuf.StringValue _formatted_child_policies = 13;
2392
2412
  google.protobuf.StringValue _threat_intel_mode = 14;
@@ -2402,11 +2422,11 @@ message AzureMicrosoftFirewallPolicy{
2402
2422
  repeated StandardObjectDifference _differences = 24;
2403
2423
  repeated CDKRule _warnings = 25;
2404
2424
  }
2405
- message AzureFirewallPolicyIntrusionDetectionSignatureSpecification{
2425
+ message AzureFirewallPolicyIntrusionDetectionSignatureSpecification {
2406
2426
  google.protobuf.StringValue _id = 1;
2407
2427
  google.protobuf.StringValue _mode = 2;
2408
2428
  }
2409
- message AzureMicrosoftFirewallPolicyRuleCollection{
2429
+ message AzureMicrosoftFirewallPolicyRuleCollection {
2410
2430
  google.protobuf.StringValue _firewall_collection_group_name = 1;
2411
2431
  google.protobuf.StringValue _name = 2;
2412
2432
  google.protobuf.Int32Value _priority = 3;
@@ -2414,7 +2434,7 @@ message AzureMicrosoftFirewallPolicyRuleCollection{
2414
2434
  repeated AzureMicrosoftFirewallPolicyNatRule _nat_rules = 5;
2415
2435
  repeated AzureMicrosoftFirewallPolicyNetworkRule _network_rules = 6;
2416
2436
  }
2417
- message AzureMicrosoftFirewallPolicyApplicationRule{
2437
+ message AzureMicrosoftFirewallPolicyApplicationRule {
2418
2438
  google.protobuf.StringValue _name = 1;
2419
2439
  google.protobuf.StringValue _formatted_target_fqdns = 2;
2420
2440
  google.protobuf.StringValue _formatted_destination_addresses = 3;
@@ -2424,7 +2444,7 @@ message AzureMicrosoftFirewallPolicyApplicationRule{
2424
2444
  google.protobuf.StringValue _formatted_source_ip_groups = 7;
2425
2445
  google.protobuf.StringValue _formatted_source_web_categories = 8;
2426
2446
  }
2427
- message AzureMicrosoftFirewallPolicyNatRule{
2447
+ message AzureMicrosoftFirewallPolicyNatRule {
2428
2448
  google.protobuf.StringValue _name = 1;
2429
2449
  google.protobuf.StringValue _translated_address = 2;
2430
2450
  google.protobuf.StringValue _translated_port = 3;
@@ -2434,7 +2454,7 @@ message AzureMicrosoftFirewallPolicyNatRule{
2434
2454
  google.protobuf.StringValue _formatted_source_addresses = 7;
2435
2455
  google.protobuf.StringValue _formatted_source_ip_groups = 8;
2436
2456
  }
2437
- message AzureMicrosoftFirewallPolicyNetworkRule{
2457
+ message AzureMicrosoftFirewallPolicyNetworkRule {
2438
2458
  google.protobuf.StringValue _name = 1;
2439
2459
  google.protobuf.StringValue _formatted_source_addresses = 2;
2440
2460
  google.protobuf.StringValue _formatted_destination_addresses = 3;
@@ -2445,7 +2465,7 @@ message AzureMicrosoftFirewallPolicyNetworkRule{
2445
2465
  google.protobuf.StringValue _formatted_destination_ip_groups = 8;
2446
2466
  }
2447
2467
  //Azure Firewall is a managed, cloud-based network security service that protects your Azure Virtual Network resources. It's a fully stateful firewall as a service with built-in high availability and unrestricted cloud scalability.
2448
- message AzureMicrosoftFirewall{
2468
+ message AzureMicrosoftFirewall {
2449
2469
  repeated ScanningIssues _scanning_issues = 1;
2450
2470
  google.protobuf.StringValue _a_d_k__name = 2;
2451
2471
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2473,14 +2493,14 @@ message AzureMicrosoftFirewall{
2473
2493
  google.protobuf.StringValue _a_d_k__price = 25;
2474
2494
  }
2475
2495
  //You can centrally create, enforce, and log application and network connectivity policies across subscriptions and virtual networks. Azure Firewall uses a static public IP address for your virtual network resources allowing outside firewalls to identify traffic originating from your virtual network.
2476
- message AzureMicrosoftFirewallIPConfiguration{
2496
+ message AzureMicrosoftFirewallIPConfiguration {
2477
2497
  repeated ScanningIssues _scanning_issues = 1;
2478
2498
  google.protobuf.StringValue _public_i_p_address_a_d_k__g_u_i_d = 2;
2479
2499
  google.protobuf.StringValue _public_i_p_address_a_d_k__name = 3;
2480
2500
  google.protobuf.StringValue _ip_address = 4;
2481
2501
  }
2482
2502
  //When you configure DNAT, the NAT rule collection action is set to Dnat. Each rule in the NAT rule collection can then be used to translate your firewall public IP and port to a private IP and port.
2483
- message AzureMicrosoftFirewallNatRuleCollection{
2503
+ message AzureMicrosoftFirewallNatRuleCollection {
2484
2504
  repeated ScanningIssues _scanning_issues = 1;
2485
2505
  google.protobuf.Int32Value _priority = 2;
2486
2506
  google.protobuf.StringValue _name = 3;
@@ -2488,7 +2508,7 @@ message AzureMicrosoftFirewallNatRuleCollection{
2488
2508
  google.protobuf.StringValue _rule_description = 5;
2489
2509
  }
2490
2510
  //You can centrally create allow or deny network filtering rules by source and destination IP address, port, and protocol. Azure Firewall is fully stateful, so it can distinguish legitimate packets for different types of connections. Rules are enforced and logged across multiple subscriptions and virtual networks.
2491
- message AzureMicrosoftFirewallNetworkRuleCollection{
2511
+ message AzureMicrosoftFirewallNetworkRuleCollection {
2492
2512
  repeated ScanningIssues _scanning_issues = 1;
2493
2513
  google.protobuf.Int32Value _priority = 2;
2494
2514
  google.protobuf.StringValue _name = 3;
@@ -2496,7 +2516,7 @@ message AzureMicrosoftFirewallNetworkRuleCollection{
2496
2516
  google.protobuf.StringValue _rule_description = 5;
2497
2517
  }
2498
2518
  //Build secure, scalable, and highly available web front ends in Azure
2499
- message AzureMicrosoftFirewallApplicationRuleCollection{
2519
+ message AzureMicrosoftFirewallApplicationRuleCollection {
2500
2520
  repeated ScanningIssues _scanning_issues = 1;
2501
2521
  google.protobuf.Int32Value _priority = 2;
2502
2522
  google.protobuf.StringValue _name = 3;
@@ -2504,7 +2524,7 @@ message AzureMicrosoftFirewallApplicationRuleCollection{
2504
2524
  google.protobuf.StringValue _rule_description = 5;
2505
2525
  }
2506
2526
  //Provision cloud Hadoop, Spark, R Server, HBase, and Storm clusters
2507
- message AzureMicrosoftHDInsightCluster{
2527
+ message AzureMicrosoftHDInsightCluster {
2508
2528
  repeated ScanningIssues _scanning_issues = 1;
2509
2529
  google.protobuf.StringValue _a_d_k__name = 2;
2510
2530
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2533,19 +2553,19 @@ message AzureMicrosoftHDInsightCluster{
2533
2553
  google.protobuf.StringValue _a_d_k__price = 26;
2534
2554
  }
2535
2555
  //Azure Storage is a Microsoft-managed service providing cloud storage that is highly available, secure, durable, scalable, and redundant. Azure Storage includes Azure Blobs (objects), Azure Data Lake Storage Gen2, Azure Files, Azure Queues, and Azure Tables.
2536
- message AzureMicrosoftStorage{
2556
+ message AzureMicrosoftStorage {
2537
2557
  repeated ScanningIssues _scanning_issues = 1;
2538
2558
  google.protobuf.StringValue _name = 2;
2539
2559
  google.protobuf.StringValue _kind = 3;
2540
2560
  google.protobuf.StringValue _a_d_k__name = 4;
2541
2561
  google.protobuf.StringValue _a_d_k__g_u_i_d = 5;
2542
2562
  google.protobuf.StringValue _resource_group = 6;
2543
- google.protobuf.StringValue _status_of_primary = 7;//. Possible Values are : Available,Unavailable
2563
+ google.protobuf.StringValue _status_of_primary = 7; //. Possible Values are : Available,Unavailable
2544
2564
  google.protobuf.StringValue _location = 8;
2545
2565
  google.protobuf.StringValue _replication = 9;
2546
2566
  google.protobuf.StringValue _created_date_time = 10;
2547
2567
  google.protobuf.StringValue _sku_name = 11;
2548
- google.protobuf.StringValue _provisioning_state = 12;//. Possible Values are : Creating,ResolvingDNS,Succeeded
2568
+ google.protobuf.StringValue _provisioning_state = 12; //. Possible Values are : Creating,ResolvingDNS,Succeeded
2549
2569
  google.protobuf.StringValue _used_capacity = 13;
2550
2570
  google.protobuf.StringValue _storage_primary_endpoints_blob = 14;
2551
2571
  google.protobuf.StringValue _storage_primary_endpoints_file = 15;
@@ -2567,7 +2587,7 @@ message AzureMicrosoftStorage{
2567
2587
  google.protobuf.StringValue _a_d_k__price = 31;
2568
2588
  }
2569
2589
  //Provision cloud Hadoop, Spark, R Server, HBase, and Storm clusters
2570
- message AzureMicrosoftHDInsightApplication{
2590
+ message AzureMicrosoftHDInsightApplication {
2571
2591
  repeated ScanningIssues _scanning_issues = 1;
2572
2592
  google.protobuf.StringValue _name = 2;
2573
2593
  google.protobuf.StringValue _application_properties_application_state = 3;
@@ -2575,20 +2595,20 @@ message AzureMicrosoftHDInsightApplication{
2575
2595
  google.protobuf.StringValue _application_properties_provisioning_state = 5;
2576
2596
  }
2577
2597
  //Provision cloud Hadoop, Spark, R Server, HBase, and Storm clusters
2578
- message AzureMicrosoftHDInsightScriptAction{
2598
+ message AzureMicrosoftHDInsightScriptAction {
2579
2599
  repeated ScanningIssues _scanning_issues = 1;
2580
2600
  google.protobuf.StringValue _name = 2;
2581
2601
  google.protobuf.StringValue _action_script_role = 3;
2582
2602
  }
2583
2603
  //A group of identical session hosts that serve a common purpose
2584
- message AzureMicrosoftAvdHostPool{
2604
+ message AzureMicrosoftAvdHostPool {
2585
2605
  repeated ScanningIssues _scanning_issues = 1;
2586
2606
  google.protobuf.StringValue _a_d_k__name = 2;
2587
2607
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
2588
2608
  google.protobuf.StringValue _resource_group_name = 4;
2589
2609
  google.protobuf.StringValue _location = 5;
2590
- google.protobuf.StringValue _properties_host_pool_type = 6;//. Possible Values are : ByoDesktop,Personal,Pooled
2591
- google.protobuf.StringValue _properties_personal_desktop_assignment_type = 7;//. Possible Values are : Automatic,Direct
2610
+ google.protobuf.StringValue _properties_host_pool_type = 6; //. Possible Values are : ByoDesktop,Personal,Pooled
2611
+ google.protobuf.StringValue _properties_personal_desktop_assignment_type = 7; //. Possible Values are : Automatic,Direct
2592
2612
  repeated AzureMicrosoftAvdApplicationGroup _application_groups = 8;
2593
2613
  repeated AzureMicrosoftAvdSessionHost _session_hosts = 9;
2594
2614
  repeated CloudockitTag _tags = 10;
@@ -2600,11 +2620,11 @@ message AzureMicrosoftAvdHostPool{
2600
2620
  google.protobuf.StringValue _a_d_k__price = 16;
2601
2621
  }
2602
2622
  //A logical grouping of published applications or a published desktop
2603
- message AzureMicrosoftAvdApplicationGroup{
2623
+ message AzureMicrosoftAvdApplicationGroup {
2604
2624
  repeated ScanningIssues _scanning_issues = 1;
2605
2625
  google.protobuf.StringValue _a_d_k__name = 2;
2606
2626
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
2607
- google.protobuf.StringValue _properties_application_group_type = 4;//. Possible Values are : Desktop,RemoteApp
2627
+ google.protobuf.StringValue _properties_application_group_type = 4; //. Possible Values are : Desktop,RemoteApp
2608
2628
  google.protobuf.StringValue _properties_friendly_name = 5;
2609
2629
  google.protobuf.StringValue _properties_description = 6;
2610
2630
  repeated AzureMicrosoftAvdDesktop _desktops = 7;
@@ -2612,36 +2632,36 @@ message AzureMicrosoftAvdApplicationGroup{
2612
2632
  repeated CloudockitTag _tags = 9;
2613
2633
  }
2614
2634
  //A Windows desktop environment running on AVD session host(s) and delivered to users over the network
2615
- message AzureMicrosoftAvdDesktop{
2635
+ message AzureMicrosoftAvdDesktop {
2616
2636
  repeated ScanningIssues _scanning_issues = 1;
2617
2637
  google.protobuf.StringValue _a_d_k__name = 2;
2618
2638
  google.protobuf.StringValue _application_type = 3;
2619
2639
  google.protobuf.StringValue _properties_friendly_name = 4;
2620
2640
  }
2621
2641
  //A Windows application running on AVD session host(s) and delivered to users over the network
2622
- message AzureMicrosoftAvdApplication{
2642
+ message AzureMicrosoftAvdApplication {
2623
2643
  repeated ScanningIssues _scanning_issues = 1;
2624
2644
  google.protobuf.StringValue _a_d_k__name = 2;
2625
2645
  google.protobuf.StringValue _application_type = 3;
2626
2646
  google.protobuf.StringValue _properties_friendly_name = 4;
2627
2647
  }
2628
2648
  //A virtual machine that hosts published desktops and/or applications
2629
- message AzureMicrosoftAvdSessionHost{
2649
+ message AzureMicrosoftAvdSessionHost {
2630
2650
  repeated ScanningIssues _scanning_issues = 1;
2631
2651
  google.protobuf.StringValue _a_d_k__name = 2;
2632
2652
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
2633
2653
  google.protobuf.StringValue _virtual_machine_size = 4;
2634
2654
  google.protobuf.StringValue _properties_last_heart_beat = 5;
2635
2655
  google.protobuf.StringValue _properties_agent_version = 6;
2636
- google.protobuf.StringValue _properties_status = 7;//. Possible Values are : Available,Disconnected,DomainTrustRelationshipLost,FSLogixNotHealthy,NeedsAssistance,NoHeartbeat,NotJoinedToDomain,Shutdown,SxSStackListenerNotReady,Unavailable,UpgradeFailed,Upgrading
2656
+ google.protobuf.StringValue _properties_status = 7; //. Possible Values are : Available,Disconnected,DomainTrustRelationshipLost,FSLogixNotHealthy,NeedsAssistance,NoHeartbeat,NotJoinedToDomain,Shutdown,SxSStackListenerNotReady,Unavailable,UpgradeFailed,Upgrading
2637
2657
  repeated SessionHostHealthStatus _vm_status = 8;
2638
2658
  }
2639
- message SessionHostHealthStatus{
2659
+ message SessionHostHealthStatus {
2640
2660
  google.protobuf.StringValue _health_check_name = 1;
2641
2661
  google.protobuf.StringValue _status = 2;
2642
2662
  }
2643
2663
  //When a hybrid machine is connected to Azure, it becomes a connected machine and is treated as a resource in Azure.
2644
- message AzureMicrosoftHybridComputeMachine{
2664
+ message AzureMicrosoftHybridComputeMachine {
2645
2665
  repeated ScanningIssues _scanning_issues = 1;
2646
2666
  google.protobuf.StringValue _a_d_k__name = 2;
2647
2667
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2663,14 +2683,14 @@ message AzureMicrosoftHybridComputeMachine{
2663
2683
  repeated ResourceBilling _resources_billing = 19;
2664
2684
  google.protobuf.StringValue _a_d_k__price = 20;
2665
2685
  }
2666
- message AzureMicrosoftHybridComputeMachineExtension{
2686
+ message AzureMicrosoftHybridComputeMachineExtension {
2667
2687
  google.protobuf.StringValue _name = 1;
2668
2688
  google.protobuf.StringValue _machine_extension_type = 2;
2669
2689
  google.protobuf.StringValue _type_handler_version = 3;
2670
2690
  google.protobuf.StringValue _provisioning_state = 4;
2671
2691
  }
2672
2692
  //A managed image resource can be created from a generalized virtual machine (VM) that is stored as either a managed disk or an unmanaged disk in a storage account.
2673
- message AzureMicrosoftImages{
2693
+ message AzureMicrosoftImages {
2674
2694
  repeated ScanningIssues _scanning_issues = 1;
2675
2695
  google.protobuf.StringValue _a_d_k__name = 2;
2676
2696
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2693,14 +2713,14 @@ message AzureMicrosoftImages{
2693
2713
  google.protobuf.StringValue _a_d_k__price = 20;
2694
2714
  }
2695
2715
  //Connect, monitor and manage billions of IoT assets.
2696
- message AzureMicrosoftIoTHub{
2716
+ message AzureMicrosoftIoTHub {
2697
2717
  repeated ScanningIssues _scanning_issues = 1;
2698
2718
  google.protobuf.StringValue _a_d_k__name = 2;
2699
2719
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
2700
2720
  google.protobuf.StringValue _location = 4;
2701
2721
  google.protobuf.StringValue _io_thub_sku_name = 5;
2702
2722
  google.protobuf.Int64Value _io_thub_sku_capacity = 6;
2703
- google.protobuf.StringValue _io_thub_sku_tier = 7;//. Possible Values are : Free,Standard,Basic
2723
+ google.protobuf.StringValue _io_thub_sku_tier = 7; //. Possible Values are : Free,Standard,Basic
2704
2724
  google.protobuf.Int32Value _cloud_to_device_prop_max_delivery_count = 8;
2705
2725
  google.protobuf.StringValue _cloud_to_device_prop_default_ttl_as_iso8601 = 9;
2706
2726
  google.protobuf.BoolValue _fall_back_route_props_is_enabled = 10;
@@ -2722,61 +2742,61 @@ message AzureMicrosoftIoTHub{
2722
2742
  repeated ResourceBilling _resources_billing = 26;
2723
2743
  google.protobuf.StringValue _a_d_k__price = 27;
2724
2744
  }
2725
- message AzureMicrosoftIoTHubRouteProperties{
2745
+ message AzureMicrosoftIoTHubRouteProperties {
2726
2746
  google.protobuf.StringValue _name = 1;
2727
2747
  google.protobuf.StringValue _source = 2;
2728
2748
  google.protobuf.BoolValue _is_enabled = 3;
2729
2749
  repeated AzureString _end_points = 4;
2730
2750
  }
2731
- message AzureMicrosoftIoTHubRoutingEventHubEndPoint{
2751
+ message AzureMicrosoftIoTHubRoutingEventHubEndPoint {
2732
2752
  google.protobuf.StringValue _name = 1;
2733
2753
  google.protobuf.StringValue _resource_group = 2;
2734
2754
  google.protobuf.StringValue _connection_string_encrypted = 3;
2735
2755
  }
2736
- message AzureMicrosoftIoTHubRoutingServiceBusQueueEndpointProperties{
2756
+ message AzureMicrosoftIoTHubRoutingServiceBusQueueEndpointProperties {
2737
2757
  google.protobuf.StringValue _name = 1;
2738
2758
  google.protobuf.StringValue _resource_group = 2;
2739
2759
  google.protobuf.StringValue _connection_string_encrypted = 3;
2740
2760
  }
2741
- message AzureMicrosoftIoTHubRoutingServiceBusTopicEndpointProperties{
2761
+ message AzureMicrosoftIoTHubRoutingServiceBusTopicEndpointProperties {
2742
2762
  google.protobuf.StringValue _name = 1;
2743
2763
  google.protobuf.StringValue _resource_group = 2;
2744
2764
  google.protobuf.StringValue _connection_string_encrypted = 3;
2745
2765
  }
2746
- message AzureMicrosoftIoTHubIPFilterRule{
2766
+ message AzureMicrosoftIoTHubIPFilterRule {
2747
2767
  google.protobuf.StringValue _filter_name = 1;
2748
2768
  google.protobuf.StringValue _ip_mask = 2;
2749
- google.protobuf.StringValue _action = 3;//. Possible Values are : Accept,Reject
2769
+ google.protobuf.StringValue _action = 3; //. Possible Values are : Accept,Reject
2750
2770
  }
2751
- message AzureMicrosoftIoTHubEventHubEndPoint{
2771
+ message AzureMicrosoftIoTHubEventHubEndPoint {
2752
2772
  google.protobuf.StringValue _end_point_name = 1;
2753
2773
  google.protobuf.StringValue _endpoint = 2;
2754
2774
  google.protobuf.Int32Value _partition_count = 3;
2755
2775
  google.protobuf.StringValue _path = 4;
2756
2776
  google.protobuf.Int64Value _retention_time_in_days = 5;
2757
2777
  }
2758
- message AzureMicrosoftIoTHubMessageBusEndPoint{
2778
+ message AzureMicrosoftIoTHubMessageBusEndPoint {
2759
2779
  google.protobuf.StringValue _end_point_name = 1;
2760
2780
  google.protobuf.Int32Value _max_delivery_count = 2;
2761
2781
  google.protobuf.StringValue _ttl_as_iso8601 = 3;
2762
2782
  google.protobuf.StringValue _lock_duration_as_iso8601 = 4;
2763
2783
  }
2764
- message AzureMicrosoftIoTHubStorageEndPoint{
2784
+ message AzureMicrosoftIoTHubStorageEndPoint {
2765
2785
  google.protobuf.StringValue _end_point_name = 1;
2766
2786
  google.protobuf.StringValue _connection_string_encrypted = 2;
2767
2787
  google.protobuf.StringValue _container_name = 3;
2768
2788
  google.protobuf.StringValue _sas_ttl_as_iso8601 = 4;
2769
2789
  }
2770
2790
  //Safeguard and maintain control of keys and other secrets.
2771
- message AzureMicrosoftVault{
2791
+ message AzureMicrosoftVault {
2772
2792
  repeated ScanningIssues _scanning_issues = 1;
2773
2793
  google.protobuf.StringValue _a_d_k__name = 2;
2774
2794
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
2775
2795
  google.protobuf.StringValue _properties_vault_uri = 4;
2776
2796
  google.protobuf.StringValue _sku_name = 5;
2777
2797
  google.protobuf.StringValue _properties_tenant_id = 6;
2778
- google.protobuf.StringValue _soft_delete_status = 7;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
2779
- google.protobuf.StringValue _purge_protection_status = 8;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
2798
+ google.protobuf.StringValue _soft_delete_status = 7; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
2799
+ google.protobuf.StringValue _purge_protection_status = 8; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
2780
2800
  google.protobuf.BoolValue _properties_enabled_for_deployment = 9;
2781
2801
  google.protobuf.BoolValue _properties_enabled_for_disk_encryption = 10;
2782
2802
  google.protobuf.BoolValue _properties_enabled_for_template_deployment = 11;
@@ -2792,7 +2812,7 @@ message AzureMicrosoftVault{
2792
2812
  google.protobuf.StringValue _a_d_k__price = 21;
2793
2813
  }
2794
2814
  //Used to grant several applications access to a key vault.
2795
- message AzureMicrosoftVaultAccessPolicy{
2815
+ message AzureMicrosoftVaultAccessPolicy {
2796
2816
  repeated ScanningIssues _scanning_issues = 1;
2797
2817
  google.protobuf.StringValue _application_id = 2;
2798
2818
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2802,8 +2822,8 @@ message AzureMicrosoftVaultAccessPolicy{
2802
2822
  repeated AzureString _permissions_certificates_row_encrypted = 7;
2803
2823
  repeated AzureString _permissions_secrets_row_encrypted = 8;
2804
2824
  }
2805
- //Managed disks are block-level storage volumes that are managed by Azure and used with Azure Virtual Machines. Managed disks are like a physical disk in an on-premises server but, virtualized.
2806
- message AzureMicrosoftManagedDisk{
2825
+ //Managed disks are block-level storage volumes that are managed by Azure and used with Azure Virtual Machines. Managed disks are like a physical disk in an on-premises server but, virtualized.
2826
+ message AzureMicrosoftManagedDisk {
2807
2827
  repeated ScanningIssues _scanning_issues = 1;
2808
2828
  google.protobuf.StringValue _a_d_k__name = 2;
2809
2829
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2814,7 +2834,7 @@ message AzureMicrosoftManagedDisk{
2814
2834
  google.protobuf.StringValue _disk_size = 8;
2815
2835
  google.protobuf.StringValue _disk_sku_name = 9;
2816
2836
  google.protobuf.StringValue _virtual_machine_a_d_k__name = 10;
2817
- google.protobuf.StringValue _os_type = 11;//. Possible Values are : Windows,Linux
2837
+ google.protobuf.StringValue _os_type = 11; //. Possible Values are : Windows,Linux
2818
2838
  google.protobuf.Int32Value _max_shares = 12;
2819
2839
  google.protobuf.StringValue _availability_zone = 13;
2820
2840
  google.protobuf.StringValue _encryption_type = 14;
@@ -2825,7 +2845,7 @@ message AzureMicrosoftManagedDisk{
2825
2845
  repeated StandardObjectDifference _differences = 19;
2826
2846
  }
2827
2847
  //Simplify how you manage your app resources
2828
- message AzureMicrosoftManagementGroup{
2848
+ message AzureMicrosoftManagementGroup {
2829
2849
  repeated ScanningIssues _scanning_issues = 1;
2830
2850
  google.protobuf.StringValue _a_d_k__name = 2;
2831
2851
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2841,7 +2861,7 @@ message AzureMicrosoftManagementGroup{
2841
2861
  google.protobuf.StringValue _a_d_k__price = 13;
2842
2862
  }
2843
2863
  //Encode, store, and stream video and audio at scale.
2844
- message AzureMicrosoftMedia{
2864
+ message AzureMicrosoftMedia {
2845
2865
  repeated ScanningIssues _scanning_issues = 1;
2846
2866
  google.protobuf.StringValue _a_d_k__name = 2;
2847
2867
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2859,7 +2879,7 @@ message AzureMicrosoftMedia{
2859
2879
  google.protobuf.StringValue _a_d_k__price = 15;
2860
2880
  }
2861
2881
  //Full observability into your applications, infrastructure, and network
2862
- message AzureMicrosoftMonitorAlert{
2882
+ message AzureMicrosoftMonitorAlert {
2863
2883
  repeated ScanningIssues _scanning_issues = 1;
2864
2884
  google.protobuf.StringValue _a_d_k__name = 2;
2865
2885
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2878,7 +2898,7 @@ message AzureMicrosoftMonitorAlert{
2878
2898
  google.protobuf.StringValue _a_d_k__price = 16;
2879
2899
  }
2880
2900
  //Deliver high availability and network performance to your applications
2881
- message AzureMicrosoftNetworkFrontendIPConfiguration{
2901
+ message AzureMicrosoftNetworkFrontendIPConfiguration {
2882
2902
  repeated ScanningIssues _scanning_issues = 1;
2883
2903
  google.protobuf.StringValue _name = 2;
2884
2904
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2889,7 +2909,7 @@ message AzureMicrosoftNetworkFrontendIPConfiguration{
2889
2909
  google.protobuf.StringValue _frontend_subnet_vnet_name = 8;
2890
2910
  }
2891
2911
  //Simplify data protection and protect against ransomware
2892
- message AzureMicrosoftNetworkBackendAddressPool{
2912
+ message AzureMicrosoftNetworkBackendAddressPool {
2893
2913
  repeated ScanningIssues _scanning_issues = 1;
2894
2914
  google.protobuf.StringValue _name = 2;
2895
2915
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2899,20 +2919,20 @@ message AzureMicrosoftNetworkBackendAddressPool{
2899
2919
  google.protobuf.StringValue _virtual_machines_string = 7;
2900
2920
  google.protobuf.StringValue _virtual_machines_scale_set_string = 8;
2901
2921
  }
2902
- message AzureMicrosoftNetworkLoadBalancerTunnelInterface{
2922
+ message AzureMicrosoftNetworkLoadBalancerTunnelInterface {
2903
2923
  google.protobuf.StringValue _backend_address_pool_name = 1;
2904
2924
  google.protobuf.Int32Value _identifier = 2;
2905
2925
  google.protobuf.Int32Value _port = 3;
2906
2926
  google.protobuf.StringValue _protocol = 4;
2907
2927
  google.protobuf.StringValue _type = 5;
2908
2928
  }
2909
- message AzureMicrosoftNetworkGatewayLoadBalancer{
2929
+ message AzureMicrosoftNetworkGatewayLoadBalancer {
2910
2930
  google.protobuf.StringValue _load_balancer_name = 1;
2911
2931
  google.protobuf.StringValue _i_p_address = 2;
2912
2932
  google.protobuf.StringValue _frontend_i_p_configuration_name = 3;
2913
2933
  }
2914
2934
  //Azure Inbound NAT Rule
2915
- message AzureMicrosoftInboundNatRule{
2935
+ message AzureMicrosoftInboundNatRule {
2916
2936
  repeated ScanningIssues _scanning_issues = 1;
2917
2937
  google.protobuf.StringValue _name = 2;
2918
2938
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2926,7 +2946,7 @@ message AzureMicrosoftInboundNatRule{
2926
2946
  google.protobuf.BoolValue _enable_floating_i_p = 11;
2927
2947
  google.protobuf.Int32Value _backend_port = 12;
2928
2948
  }
2929
- message AzureMicrosoftNetworkOutboundRule{
2949
+ message AzureMicrosoftNetworkOutboundRule {
2930
2950
  google.protobuf.StringValue _name = 1;
2931
2951
  google.protobuf.Int32Value _allocated_outbound_ports = 2;
2932
2952
  google.protobuf.StringValue _protocol = 3;
@@ -2936,7 +2956,7 @@ message AzureMicrosoftNetworkOutboundRule{
2936
2956
  google.protobuf.StringValue _formatted_frontend_configurations = 7;
2937
2957
  }
2938
2958
  //Deliver high availability and network performance to your applications
2939
- message AzureMicrosoftNetworkLoadBalancingRule{
2959
+ message AzureMicrosoftNetworkLoadBalancingRule {
2940
2960
  repeated ScanningIssues _scanning_issues = 1;
2941
2961
  google.protobuf.StringValue _name = 2;
2942
2962
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2952,7 +2972,7 @@ message AzureMicrosoftNetworkLoadBalancingRule{
2952
2972
  google.protobuf.BoolValue _enable_tcp_reset = 13;
2953
2973
  google.protobuf.BoolValue _enable_floating_i_p = 14;
2954
2974
  }
2955
- message AzureMicrosoftInboundNatPool{
2975
+ message AzureMicrosoftInboundNatPool {
2956
2976
  google.protobuf.StringValue _name = 1;
2957
2977
  google.protobuf.StringValue _protocol = 2;
2958
2978
  google.protobuf.StringValue _backend_port = 3;
@@ -2960,7 +2980,7 @@ message AzureMicrosoftInboundNatPool{
2960
2980
  google.protobuf.StringValue _frontend_port_range_end = 5;
2961
2981
  }
2962
2982
  //Personalized guidance and support for when issues in Azure services affect you
2963
- message AzureMicrosoftNetworkProbe{
2983
+ message AzureMicrosoftNetworkProbe {
2964
2984
  repeated ScanningIssues _scanning_issues = 1;
2965
2985
  google.protobuf.StringValue _name = 2;
2966
2986
  google.protobuf.StringValue _protocol = 3;
@@ -2969,8 +2989,8 @@ message AzureMicrosoftNetworkProbe{
2969
2989
  google.protobuf.Int32Value _number_of_probes = 6;
2970
2990
  google.protobuf.StringValue _request_path = 7;
2971
2991
  }
2972
- //You can filter network traffic to and from Azure resources in an Azure virtual network with a network security group. A network security group contains security rules that allow or deny inbound network traffic to, or outbound network traffic from, several types of Azure resources.
2973
- message AzureMicrosoftNetworkSecurityGroup{
2992
+ //You can filter network traffic to and from Azure resources in an Azure virtual network with a network security group. A network security group contains security rules that allow or deny inbound network traffic to, or outbound network traffic from, several types of Azure resources.
2993
+ message AzureMicrosoftNetworkSecurityGroup {
2974
2994
  repeated ScanningIssues _scanning_issues = 1;
2975
2995
  google.protobuf.StringValue _a_d_k__name = 2;
2976
2996
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -2993,7 +3013,7 @@ message AzureMicrosoftNetworkSecurityGroup{
2993
3013
  google.protobuf.StringValue _a_d_k__price = 20;
2994
3014
  }
2995
3015
  //Manage network security group rules.
2996
- message AzureNetworkSecurityRule{
3016
+ message AzureNetworkSecurityRule {
2997
3017
  repeated ScanningIssues _scanning_issues = 1;
2998
3018
  google.protobuf.Int32Value _priority = 2;
2999
3019
  google.protobuf.StringValue _name = 3;
@@ -3004,7 +3024,7 @@ message AzureNetworkSecurityRule{
3004
3024
  google.protobuf.StringValue _access = 8;
3005
3025
  }
3006
3026
  //Subnets enable you to segment the virtual network into one or more sub-networks and allocate a portion of the virtual network's address space to each subnet. You can then deploy Azure resources in a specific subnet.
3007
- message AzureMicrosoftSubnet{
3027
+ message AzureMicrosoftSubnet {
3008
3028
  repeated ScanningIssues _scanning_issues = 1;
3009
3029
  google.protobuf.StringValue _name = 2;
3010
3030
  google.protobuf.StringValue _address_prefix = 3;
@@ -3019,7 +3039,7 @@ message AzureMicrosoftSubnet{
3019
3039
  repeated AzureMicrosoftServiceEndpoint _service_endpoints = 12;
3020
3040
  }
3021
3041
  //A policy assignment is a policy definition that has been assigned to take place within a specific scope. This scope could range from a management group to a resource group. The term scope refers to all the resource groups, subscriptions, or management groups that the policy definition is assigned to.
3022
- message AzureMicrosoftPolicyAssignment{
3042
+ message AzureMicrosoftPolicyAssignment {
3023
3043
  repeated ScanningIssues _scanning_issues = 1;
3024
3044
  google.protobuf.StringValue _a_d_k__name = 2;
3025
3045
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3030,7 +3050,7 @@ message AzureMicrosoftPolicyAssignment{
3030
3050
  google.protobuf.StringValue _policy_definition_policy_type = 8;
3031
3051
  }
3032
3052
  //The journey of creating and implementing a policy in Azure Policy begins with creating a policy definition. Every policy definition has conditions under which it's enforced. And, it has a defined effect that takes place if the conditions are met.
3033
- message AzureMicrosoftPolicyDefinition{
3053
+ message AzureMicrosoftPolicyDefinition {
3034
3054
  repeated ScanningIssues _scanning_issues = 1;
3035
3055
  google.protobuf.StringValue _a_d_k__name = 2;
3036
3056
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3040,7 +3060,7 @@ message AzureMicrosoftPolicyDefinition{
3040
3060
  google.protobuf.StringValue _police_rule_text__a_d_k_j_s_o_n = 7;
3041
3061
  }
3042
3062
  //A server in the Azure Database for PostgreSQL - Flexible Server deployment option is a central administrative point for multiple databases.
3043
- message AzureMicrosoftPostgreSqlFlexibleServer{
3063
+ message AzureMicrosoftPostgreSqlFlexibleServer {
3044
3064
  repeated ScanningIssues _scanning_issues = 1;
3045
3065
  google.protobuf.StringValue _a_d_k__name = 2;
3046
3066
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3070,21 +3090,21 @@ message AzureMicrosoftPostgreSqlFlexibleServer{
3070
3090
  google.protobuf.StringValue _a_d_k__price = 27;
3071
3091
  }
3072
3092
  //Within an Azure Database for PostgreSQL server, you can create one or multiple databases. You can opt to create a single database per server to utilize all the resources, or create multiple databases to share the resources.
3073
- message AzureMicrosoftPostgreSqlFlexibleDatabase{
3093
+ message AzureMicrosoftPostgreSqlFlexibleDatabase {
3074
3094
  repeated ScanningIssues _scanning_issues = 1;
3075
3095
  google.protobuf.StringValue _name = 2;
3076
3096
  google.protobuf.StringValue _charset = 3;
3077
3097
  google.protobuf.StringValue _collation = 4;
3078
3098
  }
3079
3099
  //The firewall grants access to the server based on the originating IP address of each request. With private access no public endpoint is available and only hosts located on the same network can access Azure Database for PostgreSQL - Flexible Server.
3080
- message AzureMicrosoftPostgreSqlFlexibleFirewallRule{
3100
+ message AzureMicrosoftPostgreSqlFlexibleFirewallRule {
3081
3101
  repeated ScanningIssues _scanning_issues = 1;
3082
3102
  google.protobuf.StringValue _name = 2;
3083
3103
  google.protobuf.StringValue _start_ip_address = 3;
3084
3104
  google.protobuf.StringValue _end_ip_address = 4;
3085
3105
  }
3086
3106
  //A server in the Azure Database for PostgreSQL - Single Server deployment option is a central administrative point for multiple databases.
3087
- message AzureMicrosoftPostgreSQL{
3107
+ message AzureMicrosoftPostgreSQL {
3088
3108
  repeated ScanningIssues _scanning_issues = 1;
3089
3109
  google.protobuf.StringValue _a_d_k__name = 2;
3090
3110
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3093,7 +3113,7 @@ message AzureMicrosoftPostgreSQL{
3093
3113
  google.protobuf.StringValue _fully_qualified_domain_name = 6;
3094
3114
  google.protobuf.StringValue _location = 7;
3095
3115
  google.protobuf.StringValue _version = 8;
3096
- google.protobuf.StringValue _ssl_enforcement = 9;//. Possible Values are : Enabled,Disabled
3116
+ google.protobuf.StringValue _ssl_enforcement = 9; //. Possible Values are : Enabled,Disabled
3097
3117
  google.protobuf.Int64Value _earliest_restore_date = 10;
3098
3118
  repeated AzureMicrosoftPostgreDatabase _databases = 11;
3099
3119
  repeated AzureMicrosoftFirewallRule _firewall_rules = 12;
@@ -3106,7 +3126,7 @@ message AzureMicrosoftPostgreSQL{
3106
3126
  google.protobuf.StringValue _a_d_k__price = 19;
3107
3127
  }
3108
3128
  //Within an Azure Database for PostgreSQL server, you can create one or multiple databases. You can opt to create a single database per server to utilize all the resources, or create multiple databases to share the resources.
3109
- message AzureMicrosoftPostgreDatabase{
3129
+ message AzureMicrosoftPostgreDatabase {
3110
3130
  repeated ScanningIssues _scanning_issues = 1;
3111
3131
  google.protobuf.StringValue _a_d_k__name = 2;
3112
3132
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3114,14 +3134,14 @@ message AzureMicrosoftPostgreDatabase{
3114
3134
  google.protobuf.StringValue _charset = 5;
3115
3135
  }
3116
3136
  //The firewall grants access to the server based on the originating IP address of each request. With private access no public endpoint is available and only hosts located on the same network can access Azure Database for PostgreSQL - Flexible Server.
3117
- message AzureMicrosoftFirewallRule{
3137
+ message AzureMicrosoftFirewallRule {
3118
3138
  repeated ScanningIssues _scanning_issues = 1;
3119
3139
  google.protobuf.StringValue _name = 2;
3120
3140
  google.protobuf.StringValue _start_ip_address = 3;
3121
3141
  google.protobuf.StringValue _end_ip_address = 4;
3122
3142
  }
3123
3143
  //A private endpoint is a network interface that uses a private IP address from your virtual network. This network interface connects you privately and securely to a service that's powered by Azure Private Link.
3124
- message AzureMicrosoftPrivateEndpointConnection{
3144
+ message AzureMicrosoftPrivateEndpointConnection {
3125
3145
  repeated ScanningIssues _scanning_issues = 1;
3126
3146
  google.protobuf.StringValue _a_d_k__name = 2;
3127
3147
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3147,7 +3167,7 @@ message AzureMicrosoftPrivateEndpointConnection{
3147
3167
  google.protobuf.StringValue _connection_state_description = 23;
3148
3168
  }
3149
3169
  //Used for communication with the Internet, including Azure public-facing services.
3150
- message AzureMicrosoftPublicIPAddress{
3170
+ message AzureMicrosoftPublicIPAddress {
3151
3171
  repeated ScanningIssues _scanning_issues = 1;
3152
3172
  google.protobuf.StringValue _a_d_k__name = 2;
3153
3173
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3171,7 +3191,7 @@ message AzureMicrosoftPublicIPAddress{
3171
3191
  google.protobuf.StringValue _a_d_k__price = 21;
3172
3192
  }
3173
3193
  //Keep your business running with built-in disaster recovery service
3174
- message AzureMicrosoftRecoveryServiceVault{
3194
+ message AzureMicrosoftRecoveryServiceVault {
3175
3195
  repeated ScanningIssues _scanning_issues = 1;
3176
3196
  google.protobuf.StringValue _a_d_k__name = 2;
3177
3197
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3189,20 +3209,20 @@ message AzureMicrosoftRecoveryServiceVault{
3189
3209
  google.protobuf.StringValue _a_d_k__price = 15;
3190
3210
  }
3191
3211
  //Item that is backed up within a vault.
3192
- message AzureMicrosoftRecoveryServiceBackupProtectedItem{
3212
+ message AzureMicrosoftRecoveryServiceBackupProtectedItem {
3193
3213
  repeated ScanningIssues _scanning_issues = 1;
3194
3214
  google.protobuf.StringValue _a_d_k__name = 2;
3195
3215
  google.protobuf.StringValue _backup_management_friendly_name = 3;
3196
3216
  google.protobuf.StringValue _last_backup_status = 4;
3197
3217
  google.protobuf.Int64Value _last_recovery_point = 5;
3198
3218
  }
3199
- message AzureRecoveryServiceVaultProtectionPolicy{
3219
+ message AzureRecoveryServiceVaultProtectionPolicy {
3200
3220
  google.protobuf.StringValue _policy_name = 1;
3201
3221
  google.protobuf.StringValue _policy_sub_type = 2;
3202
3222
  google.protobuf.StringValue _policy_type = 3;
3203
3223
  }
3204
3224
  //Power applications with high-throughput, low-latency data access.
3205
- message AzureMicrosoftRedis{
3225
+ message AzureMicrosoftRedis {
3206
3226
  repeated ScanningIssues _scanning_issues = 1;
3207
3227
  google.protobuf.StringValue _a_d_k__name = 2;
3208
3228
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3233,13 +3253,13 @@ message AzureMicrosoftRedis{
3233
3253
  repeated ResourceBilling _resources_billing = 28;
3234
3254
  google.protobuf.StringValue _a_d_k__price = 29;
3235
3255
  }
3236
- message AzureMicrosoftRedisFirewallRule{
3256
+ message AzureMicrosoftRedisFirewallRule {
3237
3257
  google.protobuf.StringValue _name = 1;
3238
3258
  google.protobuf.StringValue _start_ip_address = 2;
3239
3259
  google.protobuf.StringValue _end_ip_address = 3;
3240
3260
  }
3241
3261
  //Azure automatically routes traffic between Azure subnets, virtual networks, and on-premises networks. If you want to change any of Azure's default routing, you do so by creating a route table.
3242
- message AzureMicrosoftRouteTable{
3262
+ message AzureMicrosoftRouteTable {
3243
3263
  repeated ScanningIssues _scanning_issues = 1;
3244
3264
  google.protobuf.StringValue _a_d_k__name = 2;
3245
3265
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3254,7 +3274,7 @@ message AzureMicrosoftRouteTable{
3254
3274
  google.protobuf.StringValue _a_d_k__price = 12;
3255
3275
  }
3256
3276
  //Each route contains an address prefix and next hop type. When traffic leaving a subnet is sent to an IP address within the address prefix of a route, the route that contains the prefix is the route Azure uses.
3257
- message AzureMicrosoftRoute{
3277
+ message AzureMicrosoftRoute {
3258
3278
  repeated ScanningIssues _scanning_issues = 1;
3259
3279
  google.protobuf.StringValue _name = 2;
3260
3280
  google.protobuf.StringValue _address_prefix = 3;
@@ -3262,14 +3282,14 @@ message AzureMicrosoftRoute{
3262
3282
  google.protobuf.StringValue _next_hop_ip_address = 5;
3263
3283
  }
3264
3284
  //AI-powered cloud search service for mobile and web app development.
3265
- message AzureMicrosoftSearchServices{
3285
+ message AzureMicrosoftSearchServices {
3266
3286
  repeated ScanningIssues _scanning_issues = 1;
3267
3287
  google.protobuf.StringValue _a_d_k__name = 2;
3268
3288
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
3269
3289
  google.protobuf.StringValue _url = 4;
3270
3290
  google.protobuf.StringValue _sku_name = 5;
3271
3291
  google.protobuf.StringValue _resource_group_name = 6;
3272
- google.protobuf.StringValue _status = 7;//. Possible Values are : Running,Provisioning,Deleting,Degraded,Disabled,Error
3292
+ google.protobuf.StringValue _status = 7; //. Possible Values are : Running,Provisioning,Deleting,Degraded,Disabled,Error
3273
3293
  google.protobuf.StringValue _location = 8;
3274
3294
  google.protobuf.StringValue _hosting_mode = 9;
3275
3295
  google.protobuf.Int32Value _partition_count = 10;
@@ -3283,22 +3303,22 @@ message AzureMicrosoftSearchServices{
3283
3303
  repeated ResourceBilling _resources_billing = 18;
3284
3304
  google.protobuf.StringValue _a_d_k__price = 19;
3285
3305
  }
3286
- message AzureMicrosoftSearchIndex{
3306
+ message AzureMicrosoftSearchIndex {
3287
3307
  repeated AzureMicrosoftSearchIndexField _search_index_fields = 1;
3288
3308
  repeated AzureMicrosoftSearchIndexScoringProfile _search_index_scoring_profiles = 2;
3289
3309
  }
3290
- message AzureMicrosoftSearchIndexField{
3310
+ message AzureMicrosoftSearchIndexField {
3291
3311
  google.protobuf.StringValue _name = 1;
3292
3312
  google.protobuf.StringValue _type = 2;
3293
3313
  google.protobuf.StringValue _attributes = 3;
3294
3314
  }
3295
- message AzureMicrosoftSearchIndexScoringProfile{
3315
+ message AzureMicrosoftSearchIndexScoringProfile {
3296
3316
  google.protobuf.StringValue _name = 1;
3297
3317
  google.protobuf.StringValue _weights_info = 2;
3298
3318
  google.protobuf.StringValue _functions_info = 3;
3299
3319
  }
3300
3320
  //Microsoft Sentinel delivers intelligent security analytics and threat intelligence across the enterprise. With Microsoft Sentinel, you get a single solution for attack detection, threat visibility, proactive hunting, and threat response.
3301
- message AzureSecurityInsightWorkspace{
3321
+ message AzureSecurityInsightWorkspace {
3302
3322
  repeated ScanningIssues _scanning_issues = 1;
3303
3323
  google.protobuf.StringValue _a_d_k__name = 2;
3304
3324
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3319,13 +3339,13 @@ message AzureSecurityInsightWorkspace{
3319
3339
  google.protobuf.StringValue _a_d_k__price = 18;
3320
3340
  }
3321
3341
  //You can use data connectors to start ingesting your data into Microsoft Sentinel. Microsoft Sentinel comes with many out of the box connectors for Microsoft services, which you can integrate in real time.
3322
- message AzureSecurityInsightDataConnector{
3342
+ message AzureSecurityInsightDataConnector {
3323
3343
  repeated ScanningIssues _scanning_issues = 1;
3324
3344
  google.protobuf.StringValue _name = 2;
3325
3345
  google.protobuf.StringValue _display_name = 3;
3326
3346
  }
3327
3347
  //Analytics rules search for specific events or sets of events across your environment, alert you when certain event thresholds or conditions are reached, generate incidents for your SOC to triage and investigate, and respond to threats with automated tracking and remediation processes.
3328
- message AzureSecurityInsightAlertRule{
3348
+ message AzureSecurityInsightAlertRule {
3329
3349
  repeated ScanningIssues _scanning_issues = 1;
3330
3350
  google.protobuf.StringValue _a_d_k__name = 2;
3331
3351
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3334,7 +3354,7 @@ message AzureSecurityInsightAlertRule{
3334
3354
  google.protobuf.StringValue _severity = 6;
3335
3355
  }
3336
3356
  //Connect across private and public cloud environments.
3337
- message AzureMicrosoftServiceBusNamespace{
3357
+ message AzureMicrosoftServiceBusNamespace {
3338
3358
  repeated ScanningIssues _scanning_issues = 1;
3339
3359
  google.protobuf.StringValue _a_d_k__name = 2;
3340
3360
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3343,7 +3363,7 @@ message AzureMicrosoftServiceBusNamespace{
3343
3363
  google.protobuf.StringValue _type = 6;
3344
3364
  google.protobuf.Int64Value _created_at = 7;
3345
3365
  google.protobuf.Int64Value _updated_at = 8;
3346
- google.protobuf.StringValue _sku_tier = 9;//. Possible Values are : Basic,Standard,Premium
3366
+ google.protobuf.StringValue _sku_tier = 9; //. Possible Values are : Basic,Standard,Premium
3347
3367
  google.protobuf.StringValue _zone_redundant_status = 10;
3348
3368
  google.protobuf.StringValue _provisioning_state = 11;
3349
3369
  google.protobuf.StringValue _service_bus_endpoint = 12;
@@ -3357,14 +3377,14 @@ message AzureMicrosoftServiceBusNamespace{
3357
3377
  repeated ResourceBilling _resources_billing = 20;
3358
3378
  google.protobuf.StringValue _a_d_k__price = 21;
3359
3379
  }
3360
- //Queues offer First In, First Out (FIFO) message delivery to one or more competing consumers.
3361
- message AzureMicrosoftServiceBusQueue{
3380
+ //Queues offer First In, First Out (FIFO) message delivery to one or more competing consumers.
3381
+ message AzureMicrosoftServiceBusQueue {
3362
3382
  repeated ScanningIssues _scanning_issues = 1;
3363
3383
  google.protobuf.StringValue _name = 2;
3364
3384
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
3365
3385
  google.protobuf.StringValue _queue_url = 4;
3366
3386
  google.protobuf.Int64Value _created_at = 5;
3367
- google.protobuf.StringValue _status = 6;//. Possible Values are : Active,Disabled,Restoring,SendDisabled,ReceiveDisabled,Creating,Deleting,Renaming,Unknown
3387
+ google.protobuf.StringValue _status = 6; //. Possible Values are : Active,Disabled,Restoring,SendDisabled,ReceiveDisabled,Creating,Deleting,Renaming,Unknown
3368
3388
  google.protobuf.Int64Value _message_count_details_active_message_count = 7;
3369
3389
  google.protobuf.Int64Value _message_count_details_scheduled_message_count = 8;
3370
3390
  google.protobuf.Int64Value _message_count_details_dead_letter_message_count = 9;
@@ -3380,13 +3400,13 @@ message AzureMicrosoftServiceBusQueue{
3380
3400
  google.protobuf.BoolValue _enable_partitioning = 19;
3381
3401
  }
3382
3402
  //Provide a one-to-many form of communication, in a publish/subscribe pattern.
3383
- message AzureMicrosoftServiceBusTopic{
3403
+ message AzureMicrosoftServiceBusTopic {
3384
3404
  repeated ScanningIssues _scanning_issues = 1;
3385
3405
  google.protobuf.StringValue _name = 2;
3386
3406
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
3387
3407
  google.protobuf.StringValue _topic_url = 4;
3388
3408
  google.protobuf.Int64Value _created_at = 5;
3389
- google.protobuf.StringValue _status = 6;//. Possible Values are : Active,Disabled,Restoring,SendDisabled,ReceiveDisabled,Creating,Deleting,Renaming,Unknown
3409
+ google.protobuf.StringValue _status = 6; //. Possible Values are : Active,Disabled,Restoring,SendDisabled,ReceiveDisabled,Creating,Deleting,Renaming,Unknown
3390
3410
  google.protobuf.Int64Value _message_count_details_active_message_count = 7;
3391
3411
  google.protobuf.Int64Value _message_count_details_scheduled_message_count = 8;
3392
3412
  google.protobuf.Int64Value _message_count_details_dead_letter_message_count = 9;
@@ -3400,7 +3420,7 @@ message AzureMicrosoftServiceBusTopic{
3400
3420
  google.protobuf.BoolValue _enable_partitioning = 17;
3401
3421
  }
3402
3422
  //Develop microservices and orchestrate containers on Windows or Linux.
3403
- message AzureMicrosoftServiceFabricCluster{
3423
+ message AzureMicrosoftServiceFabricCluster {
3404
3424
  repeated ScanningIssues _scanning_issues = 1;
3405
3425
  google.protobuf.StringValue _a_d_k__name = 2;
3406
3426
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3423,7 +3443,7 @@ message AzureMicrosoftServiceFabricCluster{
3423
3443
  google.protobuf.StringValue _a_d_k__price = 20;
3424
3444
  }
3425
3445
  //Develop microservices and orchestrate containers on Windows or Linux.
3426
- message AzureMicrosoftServiceFabricClusterNodeTypeDescription{
3446
+ message AzureMicrosoftServiceFabricClusterNodeTypeDescription {
3427
3447
  repeated ScanningIssues _scanning_issues = 1;
3428
3448
  google.protobuf.StringValue _name = 2;
3429
3449
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3441,7 +3461,7 @@ message AzureMicrosoftServiceFabricClusterNodeTypeDescription{
3441
3461
  google.protobuf.StringValue _scale_set_a_d_k__name = 15;
3442
3462
  }
3443
3463
  //Easily add real-time web functionality to applications
3444
- message AzureMicrosoftSignalR{
3464
+ message AzureMicrosoftSignalR {
3445
3465
  repeated ScanningIssues _scanning_issues = 1;
3446
3466
  google.protobuf.StringValue _a_d_k__name = 2;
3447
3467
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3465,7 +3485,7 @@ message AzureMicrosoftSignalR{
3465
3485
  google.protobuf.StringValue _a_d_k__price = 21;
3466
3486
  }
3467
3487
  //A snapshot is a full, read-only copy of a virtual hard drive (VHD). You can take a snapshot of an OS or data disk VHD to use as a backup, or to troubleshoot virtual machine (VM) issues.
3468
- message AzureMicrosoftSnapshot{
3488
+ message AzureMicrosoftSnapshot {
3469
3489
  repeated ScanningIssues _scanning_issues = 1;
3470
3490
  google.protobuf.StringValue _a_d_k__name = 2;
3471
3491
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3484,7 +3504,7 @@ message AzureMicrosoftSnapshot{
3484
3504
  google.protobuf.StringValue _a_d_k__price = 16;
3485
3505
  }
3486
3506
  //Create multi-user, spatially aware mixed reality experiences
3487
- message AzureMicrosoftSpatialAnchorsAccount{
3507
+ message AzureMicrosoftSpatialAnchorsAccount {
3488
3508
  repeated ScanningIssues _scanning_issues = 1;
3489
3509
  google.protobuf.StringValue _a_d_k__name = 2;
3490
3510
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3501,7 +3521,7 @@ message AzureMicrosoftSpatialAnchorsAccount{
3501
3521
  google.protobuf.StringValue _a_d_k__price = 14;
3502
3522
  }
3503
3523
  //Elastic data warehouse as a service with enterprise-class features
3504
- message AzureMicrosoftSqlElasticPool{
3524
+ message AzureMicrosoftSqlElasticPool {
3505
3525
  repeated ScanningIssues _scanning_issues = 1;
3506
3526
  google.protobuf.StringValue _a_d_k__name = 2;
3507
3527
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3526,7 +3546,7 @@ message AzureMicrosoftSqlElasticPool{
3526
3546
  google.protobuf.StringValue _a_d_k__price = 22;
3527
3547
  }
3528
3548
  //Elastic data warehouse as a service with enterprise-class features
3529
- message AzureMicrosoftElasticPoolDatabase{
3549
+ message AzureMicrosoftElasticPoolDatabase {
3530
3550
  repeated ScanningIssues _scanning_issues = 1;
3531
3551
  google.protobuf.StringValue _name = 2;
3532
3552
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3535,14 +3555,14 @@ message AzureMicrosoftElasticPoolDatabase{
3535
3555
  google.protobuf.StringValue _max_size_text = 6;
3536
3556
  }
3537
3557
  //Firewall systems help prevent unauthorized access to computer resources. If a firewall is turned on but not correctly configured, attempts to connect to SQL Server might be blocked.
3538
- message AzureMicrosoftSqlFirewallRule{
3558
+ message AzureMicrosoftSqlFirewallRule {
3539
3559
  repeated ScanningIssues _scanning_issues = 1;
3540
3560
  google.protobuf.StringValue _a_d_k__name = 2;
3541
3561
  google.protobuf.StringValue _start_ip_address = 3;
3542
3562
  google.protobuf.StringValue _end_ip_address = 4;
3543
3563
  }
3544
3564
  //Managed SQL database service for app developers
3545
- message AzureMicrosoftSqlManagedInstance{
3565
+ message AzureMicrosoftSqlManagedInstance {
3546
3566
  repeated ScanningIssues _scanning_issues = 1;
3547
3567
  google.protobuf.StringValue _a_d_k__name = 2;
3548
3568
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3567,7 +3587,7 @@ message AzureMicrosoftSqlManagedInstance{
3567
3587
  google.protobuf.StringValue _a_d_k__price = 22;
3568
3588
  }
3569
3589
  //Managed SQL database service for app developers
3570
- message AzureMicrosoftSqlManagedDatabase{
3590
+ message AzureMicrosoftSqlManagedDatabase {
3571
3591
  repeated ScanningIssues _scanning_issues = 1;
3572
3592
  google.protobuf.StringValue _a_d_k__name = 2;
3573
3593
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3578,7 +3598,7 @@ message AzureMicrosoftSqlManagedDatabase{
3578
3598
  google.protobuf.StringValue _restore_point_in_time_formatted = 8;
3579
3599
  }
3580
3600
  //SQL Server is a central part of the Microsoft data platform. SQL Server is an industry leader in operational database management systems (ODBMS).
3581
- message AzureMicrosoftSqlServer{
3601
+ message AzureMicrosoftSqlServer {
3582
3602
  repeated ScanningIssues _scanning_issues = 1;
3583
3603
  google.protobuf.StringValue _a_d_k__name = 2;
3584
3604
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3601,8 +3621,8 @@ message AzureMicrosoftSqlServer{
3601
3621
  repeated ResourceBilling _resources_billing = 20;
3602
3622
  google.protobuf.StringValue _a_d_k__price = 21;
3603
3623
  }
3604
- //A database in SQL Server is made up of a collection of tables that stores a specific set of structured data. A table contains a collection of rows, also referred to as records or tuples, and columns, also referred to as attributes.
3605
- message AzureMicrosoftSqlDatabase{
3624
+ //A database in SQL Server is made up of a collection of tables that stores a specific set of structured data. A table contains a collection of rows, also referred to as records or tuples, and columns, also referred to as attributes.
3625
+ message AzureMicrosoftSqlDatabase {
3606
3626
  repeated ScanningIssues _scanning_issues = 1;
3607
3627
  google.protobuf.StringValue _name = 2;
3608
3628
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3627,12 +3647,12 @@ message AzureMicrosoftSqlDatabase{
3627
3647
  google.protobuf.StringValue _a_d_k__price = 22;
3628
3648
  }
3629
3649
  //Tables are database objects that contain all the data in a database. In tables, data is logically organized in a row-and-column format similar to a spreadsheet. Each row represents a unique record, and each column represents a field in the record.
3630
- message AzureMicrosoftSqlTable{
3650
+ message AzureMicrosoftSqlTable {
3631
3651
  repeated ScanningIssues _scanning_issues = 1;
3632
3652
  repeated AzureMicrosoftSqlColumn _sql_columns = 2;
3633
3653
  }
3634
3654
  //A column is a set of data values of a particular simple type, one value for each row of the database.
3635
- message AzureMicrosoftSqlColumn{
3655
+ message AzureMicrosoftSqlColumn {
3636
3656
  repeated ScanningIssues _scanning_issues = 1;
3637
3657
  google.protobuf.StringValue _name = 2;
3638
3658
  google.protobuf.StringValue _type = 3;
@@ -3644,29 +3664,29 @@ message AzureMicrosoftSqlColumn{
3644
3664
  google.protobuf.StringValue _scale = 9;
3645
3665
  }
3646
3666
  //A stored procedure in SQL Server is a group of one or more Transact-SQL statements or a reference to a Microsoft .NET Framework common runtime language (CLR) method.
3647
- message AzureMicrosoftSqlProcedures{
3667
+ message AzureMicrosoftSqlProcedures {
3648
3668
  repeated ScanningIssues _scanning_issues = 1;
3649
3669
  google.protobuf.StringValue _name = 2;
3650
3670
  google.protobuf.StringValue _code = 3;
3651
3671
  }
3652
3672
  //A view is a virtual table whose contents are defined by a query. Like a table, a view consists of a set of named columns and rows of data. Unless indexed, a view does not exist as a stored set of data values in a database.
3653
- message AzureMicrosoftSqlView{
3673
+ message AzureMicrosoftSqlView {
3654
3674
  repeated ScanningIssues _scanning_issues = 1;
3655
3675
  google.protobuf.StringValue _name = 2;
3656
3676
  }
3657
3677
  //Allows a system-supplied value for the database user name of the current user to be inserted into a table when no default value is specified.
3658
- message AzureMicrosoftSqlUser{
3678
+ message AzureMicrosoftSqlUser {
3659
3679
  repeated ScanningIssues _scanning_issues = 1;
3660
3680
  google.protobuf.StringValue _name = 2;
3661
3681
  google.protobuf.StringValue _default_schema_name = 3;
3662
3682
  }
3663
3683
  //SQL Server provides server-level roles to help you manage the permissions on a server. These roles are security principals that group other principals. Server-level roles are server-wide in their permissions scope.
3664
- message AzureMicrosoftSqlRole{
3684
+ message AzureMicrosoftSqlRole {
3665
3685
  repeated ScanningIssues _scanning_issues = 1;
3666
3686
  google.protobuf.StringValue _name = 2;
3667
3687
  }
3668
3688
  //Provision private networks, optionally connect to on-premises datacenters
3669
- message AzureMicrosoftSqlVirtualNetworkRule{
3689
+ message AzureMicrosoftSqlVirtualNetworkRule {
3670
3690
  repeated ScanningIssues _scanning_issues = 1;
3671
3691
  google.protobuf.StringValue _name = 2;
3672
3692
  google.protobuf.StringValue _virtual_network_name = 3;
@@ -3675,7 +3695,7 @@ message AzureMicrosoftSqlVirtualNetworkRule{
3675
3695
  google.protobuf.StringValue _state = 6;
3676
3696
  }
3677
3697
  //REST-based object storage for unstructured data
3678
- message AzureMicrosoftStorageBlobContainer{
3698
+ message AzureMicrosoftStorageBlobContainer {
3679
3699
  repeated ScanningIssues _scanning_issues = 1;
3680
3700
  google.protobuf.StringValue _name = 2;
3681
3701
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3683,24 +3703,24 @@ message AzureMicrosoftStorageBlobContainer{
3683
3703
  repeated AzureMicrosoftStorageContainerBlobItem _last10_modified_blob_items = 5;
3684
3704
  }
3685
3705
  //REST-based object storage for unstructured data
3686
- message AzureMicrosoftStorageContainerBlobItem{
3706
+ message AzureMicrosoftStorageContainerBlobItem {
3687
3707
  repeated ScanningIssues _scanning_issues = 1;
3688
3708
  google.protobuf.StringValue _short_u_r_i = 2;
3689
3709
  google.protobuf.StringValue _size = 3;
3690
3710
  google.protobuf.StringValue _azure_blob_properties_content_type = 4;
3691
3711
  google.protobuf.StringValue _formatted_modified_date = 5;
3692
- google.protobuf.StringValue _azure_blob_properties_blob_type = 6;//. Possible Values are : Unspecified,PageBlob,BlockBlob,AppendBlob
3712
+ google.protobuf.StringValue _azure_blob_properties_blob_type = 6; //. Possible Values are : Unspecified,PageBlob,BlockBlob,AppendBlob
3693
3713
  }
3694
3714
  //NoSQL key-value store using semi-structured datasets.
3695
- message AzureMicrosoftCloudTable{
3715
+ message AzureMicrosoftCloudTable {
3696
3716
  repeated ScanningIssues _scanning_issues = 1;
3697
3717
  google.protobuf.StringValue _name = 2;
3698
3718
  }
3699
- message AzureMicrosoftStorageCorsSettings{
3719
+ message AzureMicrosoftStorageCorsSettings {
3700
3720
  repeated AzureMicrosoftBlobServiceCorsRule _blob_service_cors_rules = 1;
3701
3721
  }
3702
3722
  //CORS is an HTTP feature that enables a web application running under one domain to access resources in another domain.
3703
- message AzureMicrosoftBlobServiceCorsRule{
3723
+ message AzureMicrosoftBlobServiceCorsRule {
3704
3724
  repeated ScanningIssues _scanning_issues = 1;
3705
3725
  repeated AzureString _allowed_origins = 2;
3706
3726
  repeated AzureString _allowed_methods = 3;
@@ -3709,7 +3729,7 @@ message AzureMicrosoftBlobServiceCorsRule{
3709
3729
  google.protobuf.Int32Value _max_age_in_seconds = 6;
3710
3730
  }
3711
3731
  //Real-time data stream processing from millions of IoT devices.
3712
- message AzureMicrosoftStreamAnalyticsJob{
3732
+ message AzureMicrosoftStreamAnalyticsJob {
3713
3733
  repeated ScanningIssues _scanning_issues = 1;
3714
3734
  google.protobuf.StringValue _a_d_k__name = 2;
3715
3735
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3735,20 +3755,20 @@ message AzureMicrosoftStreamAnalyticsJob{
3735
3755
  google.protobuf.StringValue _a_d_k__price = 23;
3736
3756
  }
3737
3757
  //Real-time data stream processing from millions of IoT devices.
3738
- message AzureMicrosoftStreamAnalyticsInput{
3758
+ message AzureMicrosoftStreamAnalyticsInput {
3739
3759
  repeated ScanningIssues _scanning_issues = 1;
3740
3760
  google.protobuf.StringValue _a_d_k__name = 2;
3741
3761
  google.protobuf.StringValue _source_type = 3;
3742
3762
  google.protobuf.StringValue _source = 4;
3743
3763
  }
3744
3764
  //Real-time data stream processing from millions of IoT devices.
3745
- message AzureMicrosoftStreamAnalyticsOutput{
3765
+ message AzureMicrosoftStreamAnalyticsOutput {
3746
3766
  repeated ScanningIssues _scanning_issues = 1;
3747
3767
  google.protobuf.StringValue _a_d_k__name = 2;
3748
3768
  google.protobuf.StringValue _source = 3;
3749
3769
  }
3750
3770
  //Real-time data stream processing from millions of IoT devices.
3751
- message AzureMicrosoftStreamAnalyticsFunction{
3771
+ message AzureMicrosoftStreamAnalyticsFunction {
3752
3772
  repeated ScanningIssues _scanning_issues = 1;
3753
3773
  google.protobuf.StringValue _a_d_k__name = 2;
3754
3774
  google.protobuf.Int32Value _number_parameters = 3;
@@ -3756,7 +3776,7 @@ message AzureMicrosoftStreamAnalyticsFunction{
3756
3776
  google.protobuf.StringValue _function_type = 5;
3757
3777
  }
3758
3778
  //Route incoming traffic for high performance and availability.
3759
- message AzureMicrosoftTrafficManagerProfile{
3779
+ message AzureMicrosoftTrafficManagerProfile {
3760
3780
  repeated ScanningIssues _scanning_issues = 1;
3761
3781
  google.protobuf.StringValue _a_d_k__name = 2;
3762
3782
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3779,15 +3799,15 @@ message AzureMicrosoftTrafficManagerProfile{
3779
3799
  google.protobuf.StringValue _a_d_k__price = 20;
3780
3800
  }
3781
3801
  //Endpoint monitoring and automatic endpoint failover. Deliver high-availability applications that are resilient to endpoint failure.
3782
- message AzureMicrosoftTrafficManagerMonitoredEndPoint{
3802
+ message AzureMicrosoftTrafficManagerMonitoredEndPoint {
3783
3803
  repeated ScanningIssues _scanning_issues = 1;
3784
3804
  google.protobuf.StringValue _name = 2;
3785
3805
  google.protobuf.StringValue _endpoint_status = 3;
3786
3806
  google.protobuf.StringValue _endpoint_monitor_status = 4;
3787
3807
  google.protobuf.StringValue _endpoint_location = 5;
3788
3808
  }
3789
- //A virtual network gateway is composed of two or more virtual machines that are deployed to a specific subnet you create, which is called the gateway subnet. The VMs that are located in the gateway subnet are created when you create the virtual network gateway.
3790
- message AzureMicrosoftVirtualNetworkGateway{
3809
+ //A virtual network gateway is composed of two or more virtual machines that are deployed to a specific subnet you create, which is called the gateway subnet. The VMs that are located in the gateway subnet are created when you create the virtual network gateway.
3810
+ message AzureMicrosoftVirtualNetworkGateway {
3791
3811
  repeated ScanningIssues _scanning_issues = 1;
3792
3812
  google.protobuf.StringValue _a_d_k__name = 2;
3793
3813
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3795,7 +3815,7 @@ message AzureMicrosoftVirtualNetworkGateway{
3795
3815
  google.protobuf.StringValue _location = 5;
3796
3816
  google.protobuf.StringValue _vpn_gateway_generation = 6;
3797
3817
  google.protobuf.StringValue _sku_name = 7;
3798
- google.protobuf.StringValue _active_active_mode = 8;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
3818
+ google.protobuf.StringValue _active_active_mode = 8; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
3799
3819
  google.protobuf.StringValue _linked_virtual_network_a_d_k__g_u_i_d = 9;
3800
3820
  google.protobuf.StringValue _linked_virtual_network_a_d_k__name = 10;
3801
3821
  google.protobuf.StringValue _linked_subnet_a_d_k__g_u_i_d = 11;
@@ -3817,7 +3837,7 @@ message AzureMicrosoftVirtualNetworkGateway{
3817
3837
  repeated AzureMicrosoftVirtualNetworkGatewayConnection _connections = 27;
3818
3838
  }
3819
3839
  //Private and (optionally) public IP addresses are assigned to one or more IP configurations assigned to a network interface.
3820
- message AzureMicrosoftNetworkIPConfiguration{
3840
+ message AzureMicrosoftNetworkIPConfiguration {
3821
3841
  repeated ScanningIssues _scanning_issues = 1;
3822
3842
  google.protobuf.StringValue _name = 2;
3823
3843
  google.protobuf.StringValue _public_i_p = 3;
@@ -3825,12 +3845,12 @@ message AzureMicrosoftNetworkIPConfiguration{
3825
3845
  google.protobuf.StringValue _private_i_p_allocation_method = 5;
3826
3846
  }
3827
3847
  //Virtual Network (VNet) service endpoints extend your virtual network private address space and the identity of your VNet to the Azure services, over a direct connection.
3828
- message AzureMicrosoftServiceEndpoint{
3848
+ message AzureMicrosoftServiceEndpoint {
3829
3849
  repeated ScanningIssues _scanning_issues = 1;
3830
3850
  google.protobuf.StringValue _service = 2;
3831
3851
  }
3832
3852
  //A VPN gateway connection relies on the configuration of multiple resources, each of which contains configurable settings.
3833
- message AzureMicrosoftVirtualNetworkGatewayConnection{
3853
+ message AzureMicrosoftVirtualNetworkGatewayConnection {
3834
3854
  repeated ScanningIssues _scanning_issues = 1;
3835
3855
  google.protobuf.StringValue _a_d_k__name = 2;
3836
3856
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3846,14 +3866,14 @@ message AzureMicrosoftVirtualNetworkGatewayConnection{
3846
3866
  google.protobuf.BoolValue _use_policy_based_traffic_selectors = 13;
3847
3867
  }
3848
3868
  //Build, deploy, and scale powerful web applications quickly and efficiently.
3849
- message AzureMicrosoftWeb{
3869
+ message AzureMicrosoftWeb {
3850
3870
  repeated ScanningIssues _scanning_issues = 1;
3851
3871
  google.protobuf.StringValue _a_d_k__name = 2;
3852
3872
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
3853
3873
  google.protobuf.StringValue _state = 4;
3854
3874
  google.protobuf.StringValue _auth_settings_enabled = 5;
3855
3875
  google.protobuf.BoolValue _site_config_always_on = 6;
3856
- google.protobuf.StringValue _site_config_load_balancing = 7;//. Possible Values are : WeightedRoundRobin,LeastRequests,LeastResponseTime,WeightedTotalTraffic,RequestHash,PerSiteRoundRobin
3876
+ google.protobuf.StringValue _site_config_load_balancing = 7; //. Possible Values are : WeightedRoundRobin,LeastRequests,LeastResponseTime,WeightedTotalTraffic,RequestHash,PerSiteRoundRobin
3857
3877
  google.protobuf.Int32Value _site_config_number_of_workers = 8;
3858
3878
  google.protobuf.StringValue _site_config_auto_swap_slot_name = 9;
3859
3879
  google.protobuf.BoolValue _enabled = 10;
@@ -3865,14 +3885,14 @@ message AzureMicrosoftWeb{
3865
3885
  google.protobuf.BoolValue _site_config_use32_bit_worker_process = 16;
3866
3886
  google.protobuf.StringValue _docker_tag_id = 17;
3867
3887
  google.protobuf.StringValue _app_service_plan_name = 18;
3868
- google.protobuf.StringValue _app_service_plan_o_s_type = 19;//. Possible Values are : Windows,Linux
3888
+ google.protobuf.StringValue _app_service_plan_o_s_type = 19; //. Possible Values are : Windows,Linux
3869
3889
  google.protobuf.StringValue _a_s_e_a_d_k__g_u_i_d = 20;
3870
3890
  google.protobuf.StringValue _a_s_e_a_d_k__name = 21;
3871
3891
  google.protobuf.StringValue _app_service_plan_geo_region = 22;
3872
3892
  google.protobuf.Int32Value _app_service_plan_maximum_number_of_workers = 23;
3873
3893
  google.protobuf.Int32Value _app_service_plan_number_of_sites = 24;
3874
3894
  google.protobuf.BoolValue _app_service_plan_per_site_scaling = 25;
3875
- google.protobuf.StringValue _app_service_plan_status = 26;//. Possible Values are : Ready,Pending,Creating
3895
+ google.protobuf.StringValue _app_service_plan_status = 26; //. Possible Values are : Ready,Pending,Creating
3876
3896
  google.protobuf.StringValue _app_service_plan_sku_name = 27;
3877
3897
  google.protobuf.StringValue _app_service_plan_sku_tier = 28;
3878
3898
  google.protobuf.StringValue _app_service_plan_sku_family = 29;
@@ -3901,7 +3921,7 @@ message AzureMicrosoftWeb{
3901
3921
  google.protobuf.StringValue _a_d_k__price = 52;
3902
3922
  }
3903
3923
  //Feature of Azure App Service that enables you to run a program or script in the same context as a web app, API app, or mobile app.
3904
- message AzureMicrosoftWebJob{
3924
+ message AzureMicrosoftWebJob {
3905
3925
  repeated ScanningIssues _scanning_issues = 1;
3906
3926
  google.protobuf.StringValue _a_d_k__name = 2;
3907
3927
  google.protobuf.StringValue _web_job_type = 3;
@@ -3909,13 +3929,13 @@ message AzureMicrosoftWebJob{
3909
3929
  google.protobuf.StringValue _schedule = 5;
3910
3930
  }
3911
3931
  //Serverless computing service designed to accelerate and simplify application development.
3912
- message AzureMicrosoftFunction{
3932
+ message AzureMicrosoftFunction {
3913
3933
  repeated ScanningIssues _scanning_issues = 1;
3914
3934
  google.protobuf.StringValue _name = 2;
3915
3935
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
3916
3936
  repeated AzureMicrosoftFunctionProperties _properties = 4;
3917
3937
  }
3918
- message AzureMicrosoftFunctionProperties{
3938
+ message AzureMicrosoftFunctionProperties {
3919
3939
  google.protobuf.StringValue _name = 1;
3920
3940
  google.protobuf.StringValue _script_root_path_href = 2;
3921
3941
  google.protobuf.StringValue _script_href = 3;
@@ -3923,26 +3943,26 @@ message AzureMicrosoftFunctionProperties{
3923
3943
  google.protobuf.StringValue _href = 5;
3924
3944
  repeated AzureMicrosoftFunctionPropertiesConfig _configurations = 6;
3925
3945
  }
3926
- message AzureMicrosoftFunctionPropertiesConfig{
3946
+ message AzureMicrosoftFunctionPropertiesConfig {
3927
3947
  repeated AzureMicrosoftFunctionPropertiesBinding _bindings = 1;
3928
3948
  }
3929
- message AzureMicrosoftFunctionPropertiesBinding{
3949
+ message AzureMicrosoftFunctionPropertiesBinding {
3930
3950
  google.protobuf.StringValue _name = 1;
3931
3951
  google.protobuf.StringValue _auth_level = 2;
3932
3952
  google.protobuf.StringValue _type = 3;
3933
3953
  google.protobuf.StringValue _direction = 4;
3934
3954
  }
3935
- message AzureMicrosoftFunctionProxy{
3955
+ message AzureMicrosoftFunctionProxy {
3936
3956
  google.protobuf.StringValue _name = 1;
3937
3957
  google.protobuf.StringValue _definition_formated_json__a_d_k_j_s_o_n = 2;
3938
3958
  }
3939
- message AzureMicrosoftWebConnectionString{
3959
+ message AzureMicrosoftWebConnectionString {
3940
3960
  google.protobuf.StringValue _name = 1;
3941
3961
  google.protobuf.StringValue _type = 2;
3942
3962
  google.protobuf.StringValue _connection_string = 3;
3943
3963
  }
3944
3964
  //Provides an API, an in-process workflow engine, and a rehostable designer to implement long-running processes as workflows within .NET applications.
3945
- message AzureMicrosoftWorkflow{
3965
+ message AzureMicrosoftWorkflow {
3946
3966
  repeated ScanningIssues _scanning_issues = 1;
3947
3967
  google.protobuf.StringValue _a_d_k__name = 2;
3948
3968
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3962,11 +3982,11 @@ message AzureMicrosoftWorkflow{
3962
3982
  repeated ResourceBilling _resources_billing = 17;
3963
3983
  google.protobuf.StringValue _a_d_k__price = 18;
3964
3984
  }
3965
- message AzureMicrosoftWorkflowParameter{
3985
+ message AzureMicrosoftWorkflowParameter {
3966
3986
  google.protobuf.StringValue _name = 1;
3967
3987
  }
3968
3988
  //Azure Database for MySQL Flexible Server is a fully managed production-ready database service designed for more granular control and flexibility over database management functions and configuration settings.
3969
- message AzureMySqlFlexibleServer{
3989
+ message AzureMySqlFlexibleServer {
3970
3990
  repeated ScanningIssues _scanning_issues = 1;
3971
3991
  google.protobuf.StringValue _a_d_k__name = 2;
3972
3992
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -3993,7 +4013,7 @@ message AzureMySqlFlexibleServer{
3993
4013
  google.protobuf.StringValue _a_d_k__price = 24;
3994
4014
  }
3995
4015
  //Azure Database for MySQL is a relational database service in the Microsoft cloud. Azure Database for MySQL is based on the MySQL community edition.
3996
- message AzureMySqlDatabase{
4016
+ message AzureMySqlDatabase {
3997
4017
  repeated ScanningIssues _scanning_issues = 1;
3998
4018
  google.protobuf.StringValue _name = 2;
3999
4019
  google.protobuf.StringValue _charset = 3;
@@ -4002,7 +4022,7 @@ message AzureMySqlDatabase{
4002
4022
  google.protobuf.StringValue _a_d_k__g_u_i_d = 6;
4003
4023
  }
4004
4024
  //Azure Database for MySQL Flexible Server, automatically creates server backups and securely stores them in local redundant storage within the region. Backups can be used to restore your server to a point-in-time.
4005
- message AzureMySqlFlexibleServerBackup{
4025
+ message AzureMySqlFlexibleServerBackup {
4006
4026
  repeated ScanningIssues _scanning_issues = 1;
4007
4027
  google.protobuf.StringValue _a_d_k__name = 2;
4008
4028
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4011,14 +4031,14 @@ message AzureMySqlFlexibleServerBackup{
4011
4031
  google.protobuf.StringValue _backup_type = 6;
4012
4032
  }
4013
4033
  //Firewalls prevent all access to your database server until you specify which computers have permission. The firewall grants access to the server based on the originating IP address of each request.
4014
- message AzureMySqlFlexibleFirewallRule{
4034
+ message AzureMySqlFlexibleFirewallRule {
4015
4035
  repeated ScanningIssues _scanning_issues = 1;
4016
4036
  google.protobuf.StringValue _name = 2;
4017
4037
  google.protobuf.StringValue _start_ip_address = 3;
4018
4038
  google.protobuf.StringValue _end_ip_address = 4;
4019
4039
  }
4020
4040
  //An Azure Database for MySQL server is a central administrative point for multiple databases. It is the same MySQL server construct that you may be familiar with in the on-premises world. Specifically, the Azure Database for MySQL service is managed, provides performance guarantees, and exposes access and features at server-level.
4021
- message AzureMySqlServer{
4041
+ message AzureMySqlServer {
4022
4042
  repeated ScanningIssues _scanning_issues = 1;
4023
4043
  google.protobuf.StringValue _a_d_k__name = 2;
4024
4044
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4029,7 +4049,7 @@ message AzureMySqlServer{
4029
4049
  google.protobuf.StringValue _server_admin_login_name = 8;
4030
4050
  google.protobuf.StringValue _version = 9;
4031
4051
  google.protobuf.StringValue _performance_configuration = 10;
4032
- google.protobuf.StringValue _ssl_enforcement = 11;//. Possible Values are : Enabled,Disabled
4052
+ google.protobuf.StringValue _ssl_enforcement = 11; //. Possible Values are : Enabled,Disabled
4033
4053
  repeated AzureMySqlDatabase _databases = 12;
4034
4054
  repeated AzureMySqlFirewallRule _firewall_rules = 13;
4035
4055
  repeated AzureMySqlVirtualNetworkRule _virtual_network_rules = 14;
@@ -4043,14 +4063,14 @@ message AzureMySqlServer{
4043
4063
  google.protobuf.StringValue _a_d_k__price = 22;
4044
4064
  }
4045
4065
  //Firewalls prevent all access to your database server until you specify which computers have permission. The firewall grants access to the server based on the originating IP address of each request.
4046
- message AzureMySqlFirewallRule{
4066
+ message AzureMySqlFirewallRule {
4047
4067
  repeated ScanningIssues _scanning_issues = 1;
4048
4068
  google.protobuf.StringValue _name = 2;
4049
4069
  google.protobuf.StringValue _start_ip_address = 3;
4050
4070
  google.protobuf.StringValue _end_ip_address = 4;
4051
4071
  }
4052
4072
  //Virtual network rules are one firewall security feature that controls whether your Azure Database for MySql server accepts communications that are sent from particular subnets in virtual networks.
4053
- message AzureMySqlVirtualNetworkRule{
4073
+ message AzureMySqlVirtualNetworkRule {
4054
4074
  repeated ScanningIssues _scanning_issues = 1;
4055
4075
  google.protobuf.StringValue _name = 2;
4056
4076
  google.protobuf.StringValue _linked_virtual_network_a_d_k__g_u_i_d = 3;
@@ -4061,8 +4081,8 @@ message AzureMySqlVirtualNetworkRule{
4061
4081
  google.protobuf.StringValue _endpoint_status = 8;
4062
4082
  google.protobuf.StringValue _state = 9;
4063
4083
  }
4064
- //Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet.
4065
- message AzureMySqlPrivateEndpointConnection{
4084
+ //Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet.
4085
+ message AzureMySqlPrivateEndpointConnection {
4066
4086
  repeated ScanningIssues _scanning_issues = 1;
4067
4087
  google.protobuf.StringValue _a_d_k__name = 2;
4068
4088
  google.protobuf.StringValue _state = 3;
@@ -4070,7 +4090,7 @@ message AzureMySqlPrivateEndpointConnection{
4070
4090
  google.protobuf.StringValue _request_response_message = 5;
4071
4091
  }
4072
4092
  //A NetApp account serves as an administrative grouping of the constituent capacity pools.
4073
- message AzureNetAppAccount{
4093
+ message AzureNetAppAccount {
4074
4094
  repeated ScanningIssues _scanning_issues = 1;
4075
4095
  google.protobuf.StringValue _a_d_k__name = 2;
4076
4096
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4086,7 +4106,7 @@ message AzureNetAppAccount{
4086
4106
  google.protobuf.StringValue _a_d_k__price = 13;
4087
4107
  }
4088
4108
  //A capacity pool is measured by its provisioned capacity. Each capacity pool can belong to only one NetApp account. However, you can have multiple capacity pools within a NetApp account.
4089
- message AzureNetAppCapacityPool{
4109
+ message AzureNetAppCapacityPool {
4090
4110
  repeated ScanningIssues _scanning_issues = 1;
4091
4111
  google.protobuf.StringValue _a_d_k__name = 2;
4092
4112
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4098,7 +4118,7 @@ message AzureNetAppCapacityPool{
4098
4118
  repeated AzureNetAppVolume _volumes = 9;
4099
4119
  }
4100
4120
  //A volume is measured by logical capacity consumption and is scalable. A volume's capacity consumption counts against its pool's provisioned capacity.
4101
- message AzureNetAppVolume{
4121
+ message AzureNetAppVolume {
4102
4122
  repeated ScanningIssues _scanning_issues = 1;
4103
4123
  google.protobuf.StringValue _a_d_k__name = 2;
4104
4124
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4114,7 +4134,7 @@ message AzureNetAppVolume{
4114
4134
  repeated CloudockitTag _tags = 13;
4115
4135
  }
4116
4136
  //A Log Analytics workspace is a unique environment for log data from Azure Monitor and other Azure services, such as Microsoft Sentinel and Microsoft Defender for Cloud.
4117
- message AzureOperationalInsightWorkspace{
4137
+ message AzureOperationalInsightWorkspace {
4118
4138
  repeated ScanningIssues _scanning_issues = 1;
4119
4139
  google.protobuf.StringValue _a_d_k__name = 2;
4120
4140
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4133,7 +4153,7 @@ message AzureOperationalInsightWorkspace{
4133
4153
  google.protobuf.StringValue _a_d_k__price = 16;
4134
4154
  }
4135
4155
  //The top level storage insight resource container.
4136
- message AzureOperationalInsightStorageInsight{
4156
+ message AzureOperationalInsightStorageInsight {
4137
4157
  repeated ScanningIssues _scanning_issues = 1;
4138
4158
  google.protobuf.StringValue _name = 2;
4139
4159
  google.protobuf.StringValue _data_type = 3;
@@ -4141,7 +4161,7 @@ message AzureOperationalInsightStorageInsight{
4141
4161
  google.protobuf.StringValue _connection = 5;
4142
4162
  }
4143
4163
  //Embed fully interactive, stunning data visualizations in your applications
4144
- message AzurePowerBIDedicatedCapacity{
4164
+ message AzurePowerBIDedicatedCapacity {
4145
4165
  repeated ScanningIssues _scanning_issues = 1;
4146
4166
  google.protobuf.StringValue _a_d_k__name = 2;
4147
4167
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4160,7 +4180,7 @@ message AzurePowerBIDedicatedCapacity{
4160
4180
  google.protobuf.StringValue _a_d_k__price = 16;
4161
4181
  }
4162
4182
  //Azure Private DNS provides a reliable, secure DNS service to manage and resolve domain names in a virtual network without the need to add a custom DNS solution.
4163
- message AzurePrivateDnsZone{
4183
+ message AzurePrivateDnsZone {
4164
4184
  repeated ScanningIssues _scanning_issues = 1;
4165
4185
  google.protobuf.StringValue _a_d_k__name = 2;
4166
4186
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4179,16 +4199,16 @@ message AzurePrivateDnsZone{
4179
4199
  google.protobuf.StringValue _a_d_k__price = 16;
4180
4200
  }
4181
4201
  //Sometimes you need to create more than one DNS record with a given name and type. For example, suppose the 'www.contoso.com' web site is hosted on two different IP addresses. The website requires two different A records, one for each IP address.
4182
- message AzurePrivateDnsRecordSet{
4202
+ message AzurePrivateDnsRecordSet {
4183
4203
  repeated ScanningIssues _scanning_issues = 1;
4184
4204
  google.protobuf.StringValue _a_d_k__name = 2;
4185
- google.protobuf.StringValue _recordset_type = 3;//. Possible Values are : A,AAAA,CNAME,MX,PTR,SOA,SRV,TXT
4205
+ google.protobuf.StringValue _recordset_type = 3; //. Possible Values are : A,AAAA,CNAME,MX,PTR,SOA,SRV,TXT
4186
4206
  google.protobuf.Int64Value _ttl = 4;
4187
4207
  repeated CloudockitTag _record_values = 5;
4188
4208
  google.protobuf.BoolValue _auto_registered = 6;
4189
4209
  }
4190
4210
  //A DNS zone is used to host the DNS records for a particular domain. To start hosting your domain in Azure DNS, you need to create a DNS zone for that domain name.
4191
- message AzurePublicDnsZone{
4211
+ message AzurePublicDnsZone {
4192
4212
  repeated ScanningIssues _scanning_issues = 1;
4193
4213
  google.protobuf.StringValue _a_d_k__name = 2;
4194
4214
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4206,7 +4226,7 @@ message AzurePublicDnsZone{
4206
4226
  google.protobuf.StringValue _a_d_k__price = 15;
4207
4227
  }
4208
4228
  //Sometimes you need to create more than one DNS record with a given name and type. For example, suppose the 'www.contoso.com' web site is hosted on two different IP addresses. The website requires two different A records, one for each IP address.
4209
- message AzureDnsRecordSet{
4229
+ message AzureDnsRecordSet {
4210
4230
  repeated ScanningIssues _scanning_issues = 1;
4211
4231
  google.protobuf.StringValue _a_d_k__name = 2;
4212
4232
  google.protobuf.StringValue _recordset_type = 3;
@@ -4214,7 +4234,7 @@ message AzureDnsRecordSet{
4214
4234
  repeated CloudockitTag _record_values = 5;
4215
4235
  }
4216
4236
  //Reservations help you save money by committing to one-year or three-year plans for multiple products. Committing allows you to get a discount on the resources you use.
4217
- message AzureReservationOrder{
4237
+ message AzureReservationOrder {
4218
4238
  repeated ScanningIssues _scanning_issues = 1;
4219
4239
  google.protobuf.StringValue _a_d_k__name = 2;
4220
4240
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4234,7 +4254,7 @@ message AzureReservationOrder{
4234
4254
  google.protobuf.StringValue _a_d_k__price = 17;
4235
4255
  }
4236
4256
  //A container that holds related resources for an Azure solution. The resource group includes those resources that you want to manage as a group.
4237
- message AzureMicrosoftResourceGroup{
4257
+ message AzureMicrosoftResourceGroup {
4238
4258
  repeated ScanningIssues _scanning_issues = 1;
4239
4259
  google.protobuf.StringValue _a_d_k__name = 2;
4240
4260
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4249,7 +4269,7 @@ message AzureMicrosoftResourceGroup{
4249
4269
  google.protobuf.StringValue _a_d_k__price = 12;
4250
4270
  }
4251
4271
  //Resource in Azure
4252
- message AzureResource{
4272
+ message AzureResource {
4253
4273
  repeated ScanningIssues _scanning_issues = 1;
4254
4274
  google.protobuf.StringValue _a_d_k__g_u_i_d = 2;
4255
4275
  google.protobuf.StringValue _a_d_k__name = 3;
@@ -4257,7 +4277,7 @@ message AzureResource{
4257
4277
  google.protobuf.StringValue _type = 5;
4258
4278
  }
4259
4279
  //A role definition is a collection of permissions. It's sometimes just called a role. A role definition lists the operations that can be performed, such as read, write, and delete. Roles can be high-level, like owner, or specific, like virtual machine reader.
4260
- message AzureMicrosoftCustomRoleDefinition{
4280
+ message AzureMicrosoftCustomRoleDefinition {
4261
4281
  repeated ScanningIssues _scanning_issues = 1;
4262
4282
  google.protobuf.StringValue _a_d_k__name = 2;
4263
4283
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4268,7 +4288,7 @@ message AzureMicrosoftCustomRoleDefinition{
4268
4288
  repeated AzureString _permission_not_actions = 8;
4269
4289
  }
4270
4290
  //Azure Spring Cloud Service Resource.
4271
- message AzureSpringCloudServiceResource{
4291
+ message AzureSpringCloudServiceResource {
4272
4292
  repeated ScanningIssues _scanning_issues = 1;
4273
4293
  google.protobuf.StringValue _a_d_k__name = 2;
4274
4294
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4278,7 +4298,7 @@ message AzureSpringCloudServiceResource{
4278
4298
  google.protobuf.StringValue _service_resource_sku = 7;
4279
4299
  google.protobuf.Int32Value _version = 8;
4280
4300
  repeated AzureSpringCloudAppResource _app_resources = 9;
4281
- google.protobuf.StringValue _network_profile_deploy_in_virtual_network = 10;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4301
+ google.protobuf.StringValue _network_profile_deploy_in_virtual_network = 10; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4282
4302
  google.protobuf.StringValue _network_profile_linked_virtual_network_a_d_k__g_u_i_d = 11;
4283
4303
  google.protobuf.StringValue _network_profile_linked_virtual_network_a_d_k__name = 12;
4284
4304
  google.protobuf.StringValue _network_profile_service_cidr = 13;
@@ -4299,7 +4319,7 @@ message AzureSpringCloudServiceResource{
4299
4319
  google.protobuf.StringValue _a_d_k__price = 28;
4300
4320
  }
4301
4321
  //Azure Spring Cloud App Resource.
4302
- message AzureSpringCloudAppResource{
4322
+ message AzureSpringCloudAppResource {
4303
4323
  repeated ScanningIssues _scanning_issues = 1;
4304
4324
  google.protobuf.StringValue _a_d_k__name = 2;
4305
4325
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4316,13 +4336,13 @@ message AzureSpringCloudAppResource{
4316
4336
  repeated AzureSpringCloudDeploymentResource _deployment_resources = 14;
4317
4337
  repeated AzureSpringCloudBindingResource _binding_resources = 15;
4318
4338
  }
4319
- message AzureSpringCloudAppInstance{
4339
+ message AzureSpringCloudAppInstance {
4320
4340
  google.protobuf.StringValue _name = 1;
4321
4341
  google.protobuf.StringValue _status = 2;
4322
4342
  google.protobuf.StringValue _discovery_status = 3;
4323
4343
  }
4324
4344
  //Azure Spring Cloud Deployment Resource.
4325
- message AzureSpringCloudDeploymentResource{
4345
+ message AzureSpringCloudDeploymentResource {
4326
4346
  repeated ScanningIssues _scanning_issues = 1;
4327
4347
  google.protobuf.StringValue _a_d_k__name = 2;
4328
4348
  google.protobuf.StringValue _state = 3;
@@ -4332,21 +4352,21 @@ message AzureSpringCloudDeploymentResource{
4332
4352
  google.protobuf.StringValue _production_deployment_version = 7;
4333
4353
  }
4334
4354
  //Azure Spring Cloud Binding Resource.
4335
- message AzureSpringCloudBindingResource{
4355
+ message AzureSpringCloudBindingResource {
4336
4356
  repeated ScanningIssues _scanning_issues = 1;
4337
4357
  google.protobuf.StringValue _a_d_k__name = 2;
4338
4358
  google.protobuf.StringValue _binding_resource_properties_resource_name = 3;
4339
4359
  google.protobuf.StringValue _binding_resource_properties_resource_type = 4;
4340
4360
  }
4341
4361
  //Workspace is a web-native experience that unifies end-to-end analytics solutions for Data Engineers to empower and enable them to ingest, explore, prepare, orchestrate, and visualize their data through one experience by utilizing either SQL or Spark.
4342
- message AzureSynapseAnalyticWorkspace{
4362
+ message AzureSynapseAnalyticWorkspace {
4343
4363
  repeated ScanningIssues _scanning_issues = 1;
4344
4364
  google.protobuf.StringValue _a_d_k__name = 2;
4345
4365
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
4346
4366
  google.protobuf.StringValue _resource_group_name = 4;
4347
4367
  google.protobuf.StringValue _provisioning_state = 5;
4348
4368
  google.protobuf.StringValue _location = 6;
4349
- google.protobuf.StringValue _is_managed_virtual_network = 7;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4369
+ google.protobuf.StringValue _is_managed_virtual_network = 7; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4350
4370
  google.protobuf.StringValue _identity_principal_id = 8;
4351
4371
  google.protobuf.StringValue _workspace_web_url = 9;
4352
4372
  google.protobuf.StringValue _data_lake_storage_account_url = 10;
@@ -4369,13 +4389,13 @@ message AzureSynapseAnalyticWorkspace{
4369
4389
  repeated ResourceBilling _resources_billing = 27;
4370
4390
  google.protobuf.StringValue _a_d_k__price = 28;
4371
4391
  }
4372
- message AzureSynapseAnalyticIpFirewallRuleInfo{
4392
+ message AzureSynapseAnalyticIpFirewallRuleInfo {
4373
4393
  google.protobuf.StringValue _name = 1;
4374
4394
  google.protobuf.StringValue _start_ip_address = 2;
4375
4395
  google.protobuf.StringValue _end_ip_address = 3;
4376
4396
  }
4377
4397
  //Dedicated SQL pool (formerly SQL DW) represents a collection of analytic resources that are provisioned when using Synapse SQL.
4378
- message AzureSynapseSqlPool{
4398
+ message AzureSynapseSqlPool {
4379
4399
  repeated ScanningIssues _scanning_issues = 1;
4380
4400
  google.protobuf.StringValue _a_d_k__name = 2;
4381
4401
  google.protobuf.StringValue _pool_type = 3;
@@ -4383,7 +4403,7 @@ message AzureSynapseSqlPool{
4383
4403
  google.protobuf.StringValue _size = 5;
4384
4404
  }
4385
4405
  //Azure Synapse Data Explorer provides customers with an interactive query experience to unlock insights from log and telemetry data.
4386
- message AzureSynapseKustoPool{
4406
+ message AzureSynapseKustoPool {
4387
4407
  repeated ScanningIssues _scanning_issues = 1;
4388
4408
  google.protobuf.StringValue _a_d_k__name = 2;
4389
4409
  google.protobuf.StringValue _pool_type = 3;
@@ -4391,21 +4411,21 @@ message AzureSynapseKustoPool{
4391
4411
  google.protobuf.StringValue _size = 5;
4392
4412
  }
4393
4413
  //Apache Spark is a parallel processing framework that supports in-memory processing to boost the performance of big-data analytic applications.
4394
- message AzureSynapseBigDataPool{
4414
+ message AzureSynapseBigDataPool {
4395
4415
  repeated ScanningIssues _scanning_issues = 1;
4396
4416
  google.protobuf.StringValue _a_d_k__name = 2;
4397
4417
  google.protobuf.StringValue _node_size_family = 3;
4398
4418
  google.protobuf.StringValue _size = 4;
4399
4419
  }
4400
4420
  //The virtualWAN resource represents a virtual overlay of your Azure network and is a collection of multiple resources. It contains links to all your virtual hubs that you would like to have within the virtual WAN. Virtual WAN resources are isolated from each other and cannot contain a common hub. Virtual hubs across Virtual WAN do not communicate with each other.
4401
- message AzureVirtualWan{
4421
+ message AzureVirtualWan {
4402
4422
  repeated ScanningIssues _scanning_issues = 1;
4403
4423
  google.protobuf.StringValue _a_d_k__name = 2;
4404
4424
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
4405
4425
  google.protobuf.StringValue _resource_group_name = 4;
4406
4426
  google.protobuf.StringValue _a_d_k__location = 5;
4407
4427
  google.protobuf.StringValue _provisioning_state = 6;
4408
- google.protobuf.StringValue _branch_to_branch_traffic = 7;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4428
+ google.protobuf.StringValue _branch_to_branch_traffic = 7; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4409
4429
  google.protobuf.Int32Value _number_virtual_hubs = 8;
4410
4430
  google.protobuf.StringValue _virtual_w_a_n_type = 9;
4411
4431
  repeated AzureVirtualHub _azure_virtual_hubs = 10;
@@ -4421,7 +4441,7 @@ message AzureVirtualWan{
4421
4441
  google.protobuf.StringValue _a_d_k__price = 20;
4422
4442
  }
4423
4443
  //A virtual hub is a Microsoft-managed virtual network. The hub contains various service endpoints to enable connectivity. From your on-premises network (vpnsite), you can connect to a VPN Gateway inside the virtual hub, connect ExpressRoute circuits to a virtual hub, or even connect mobile users to a point-to-site gateway in the virtual hub. The hub is the core of your network in a region. Multiple virtual hubs can be created in the same region.
4424
- message AzureVirtualHub{
4444
+ message AzureVirtualHub {
4425
4445
  repeated ScanningIssues _scanning_issues = 1;
4426
4446
  google.protobuf.StringValue _a_d_k__name = 2;
4427
4447
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4437,7 +4457,7 @@ message AzureVirtualHub{
4437
4457
  repeated AzureVirtualHub _virtual_hub_route_tables = 13;
4438
4458
  }
4439
4459
  //A VPN gateway is a specific type of virtual network gateway that is used to send encrypted traffic between an Azure virtual network and an on-premises location over the public Internet.
4440
- message AzureVpnSite{
4460
+ message AzureVpnSite {
4441
4461
  repeated ScanningIssues _scanning_issues = 1;
4442
4462
  google.protobuf.StringValue _vpn_gateway = 2;
4443
4463
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4454,7 +4474,7 @@ message AzureVpnSite{
4454
4474
  repeated AzureVpnSiteLink _site_links = 14;
4455
4475
  }
4456
4476
  //You can connect to your resources in Azure over an IPsec/IKE (IKEv2) or OpenVPN connection. This type of connection requires a VPN client to be configured on the client computer.
4457
- message AzureP2SVpnGateway{
4477
+ message AzureP2SVpnGateway {
4458
4478
  repeated ScanningIssues _scanning_issues = 1;
4459
4479
  google.protobuf.StringValue _a_d_k__name = 2;
4460
4480
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4466,7 +4486,7 @@ message AzureP2SVpnGateway{
4466
4486
  google.protobuf.Int64Value _ingress_bytes_transferred = 9;
4467
4487
  google.protobuf.Int64Value _egress_bytes_transferred = 10;
4468
4488
  }
4469
- message AzureVpnSiteLink{
4489
+ message AzureVpnSiteLink {
4470
4490
  google.protobuf.StringValue _name = 1;
4471
4491
  google.protobuf.StringValue _link_provider_name = 2;
4472
4492
  google.protobuf.StringValue _link_speed_in_mbps = 3;
@@ -4475,7 +4495,7 @@ message AzureVpnSiteLink{
4475
4495
  google.protobuf.Int64Value _asn = 6;
4476
4496
  }
4477
4497
  //The User VPN (P2S) configuration defines the parameters for remote clients to connect. The instructions you follow depend on the authentication method you want to use.
4478
- message AzureVpnServerConfiguration{
4498
+ message AzureVpnServerConfiguration {
4479
4499
  repeated ScanningIssues _scanning_issues = 1;
4480
4500
  google.protobuf.StringValue _a_d_k__name = 2;
4481
4501
  google.protobuf.StringValue _hub_name = 3;
@@ -4484,7 +4504,7 @@ message AzureVpnServerConfiguration{
4484
4504
  google.protobuf.StringValue _tunnel_types = 6;
4485
4505
  }
4486
4506
  //The Hub virtual network connection resource is used to connect the hub seamlessly to your virtual network. One virtual network can be connected to only one virtual hub.
4487
- message AzureHubVirtualNetworkConnection{
4507
+ message AzureHubVirtualNetworkConnection {
4488
4508
  repeated ScanningIssues _scanning_issues = 1;
4489
4509
  google.protobuf.StringValue _a_d_k__name = 2;
4490
4510
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4499,7 +4519,7 @@ message AzureHubVirtualNetworkConnection{
4499
4519
  google.protobuf.StringValue _propagated_route_table_label = 12;
4500
4520
  }
4501
4521
  //Amazon API Gateway enables you to create and deploy your own REST and WebSocket APIs at any scale. You can create robust, secure, and scalable APIs that access AWS or other web services, as well as data that’s stored in the AWS Cloud. You can create APIs to use in your own client applications, or you can make your APIs available to third-party app developers.
4502
- message AmazonAPIGateway{
4522
+ message AmazonAPIGateway {
4503
4523
  repeated ScanningIssues _scanning_issues = 1;
4504
4524
  google.protobuf.StringValue _a_d_k__name = 2;
4505
4525
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4507,7 +4527,7 @@ message AmazonAPIGateway{
4507
4527
  google.protobuf.StringValue _endpoint_type = 5;
4508
4528
  google.protobuf.Int64Value _created_date = 6;
4509
4529
  google.protobuf.StringValue _api_key_source = 7;
4510
- google.protobuf.StringValue _default_endpoint = 8;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4530
+ google.protobuf.StringValue _default_endpoint = 8; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4511
4531
  google.protobuf.StringValue _description = 9;
4512
4532
  repeated AmazonAPIGatewayResource _resources = 10;
4513
4533
  repeated AmazonAPIGatewayStage _stages = 11;
@@ -4517,19 +4537,19 @@ message AmazonAPIGateway{
4517
4537
  repeated CDKRule _warnings = 15;
4518
4538
  }
4519
4539
  //Represents an API resource. Create an API.
4520
- message AmazonAPIGatewayResource{
4540
+ message AmazonAPIGatewayResource {
4521
4541
  repeated ScanningIssues _scanning_issues = 1;
4522
4542
  google.protobuf.StringValue _id = 2;
4523
4543
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
4524
4544
  google.protobuf.StringValue _path = 4;
4525
4545
  repeated AmazonAPIGatewayMethods _methods = 5;
4526
4546
  }
4527
- message AmazonAPIGatewayMethods{
4547
+ message AmazonAPIGatewayMethods {
4528
4548
  google.protobuf.StringValue _http_method = 1;
4529
4549
  google.protobuf.StringValue _authorization_type = 2;
4530
4550
  google.protobuf.StringValue _api_key_required = 3;
4531
4551
  }
4532
- message AmazonAPIGatewayStage{
4552
+ message AmazonAPIGatewayStage {
4533
4553
  google.protobuf.StringValue _deployment_id = 1;
4534
4554
  google.protobuf.StringValue _stage_name = 2;
4535
4555
  google.protobuf.StringValue _created_date = 3;
@@ -4538,14 +4558,14 @@ message AmazonAPIGatewayStage{
4538
4558
  google.protobuf.StringValue _client_certificate_id = 6;
4539
4559
  google.protobuf.StringValue _documentation_version = 7;
4540
4560
  }
4541
- message AmazonAPIGatewayModel{
4561
+ message AmazonAPIGatewayModel {
4542
4562
  google.protobuf.StringValue _id = 1;
4543
4563
  google.protobuf.StringValue _name = 2;
4544
4564
  google.protobuf.StringValue _description = 3;
4545
4565
  google.protobuf.StringValue _content_type = 4;
4546
4566
  }
4547
4567
  //To stream your applications, Amazon AppStream 2.0 requires an environment that includes a fleet that is associated with a stack, and at least one application image.
4548
- message AmazonAppStreamStack{
4568
+ message AmazonAppStreamStack {
4549
4569
  repeated ScanningIssues _scanning_issues = 1;
4550
4570
  google.protobuf.StringValue _a_d_k__name = 2;
4551
4571
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4554,18 +4574,18 @@ message AmazonAppStreamStack{
4554
4574
  google.protobuf.StringValue _redirect_u_r_l = 6;
4555
4575
  google.protobuf.StringValue _feedback_u_r_l = 7;
4556
4576
  google.protobuf.Int64Value _created_time = 8;
4557
- google.protobuf.StringValue _storage_connector_home_folders_status = 9;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4577
+ google.protobuf.StringValue _storage_connector_home_folders_status = 9; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4558
4578
  google.protobuf.StringValue _storage_connector_home_folder_s3_bucket_name = 10;
4559
- google.protobuf.StringValue _storage_connector_google_drive_status = 11;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4579
+ google.protobuf.StringValue _storage_connector_google_drive_status = 11; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4560
4580
  google.protobuf.StringValue _storage_connector_g_suite_domain = 12;
4561
- google.protobuf.StringValue _storage_connector_one_drive_status = 13;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4581
+ google.protobuf.StringValue _storage_connector_one_drive_status = 13; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4562
4582
  google.protobuf.StringValue _storage_connector_one_drive_domain = 14;
4563
4583
  google.protobuf.StringValue _user_setting_state_clipboard_copy_local_device = 15;
4564
4584
  google.protobuf.StringValue _user_setting_state_file_transfer = 16;
4565
4585
  google.protobuf.StringValue _user_setting_state_printing_to_local_device_state = 17;
4566
4586
  google.protobuf.StringValue _user_setting_state_domain_password_signin_state = 18;
4567
4587
  google.protobuf.StringValue _user_setting_state_domain_smart_card_signin_state = 19;
4568
- google.protobuf.StringValue _application_setting_setting_enabled = 20;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4588
+ google.protobuf.StringValue _application_setting_setting_enabled = 20; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4569
4589
  google.protobuf.StringValue _application_setting_settings_group = 21;
4570
4590
  google.protobuf.StringValue _application_setting_s3_bucket_name = 22;
4571
4591
  repeated AmazonAppStreamFleet _associated_fleets = 23;
@@ -4575,7 +4595,7 @@ message AmazonAppStreamStack{
4575
4595
  repeated CDKRule _warnings = 27;
4576
4596
  }
4577
4597
  //To stream your applications, Amazon AppStream 2.0 requires an environment that includes a fleet that is associated with a stack, and at least one application image.
4578
- message AmazonAppStreamFleet{
4598
+ message AmazonAppStreamFleet {
4579
4599
  repeated ScanningIssues _scanning_issues = 1;
4580
4600
  google.protobuf.StringValue _a_d_k__name = 2;
4581
4601
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4595,17 +4615,17 @@ message AmazonAppStreamFleet{
4595
4615
  google.protobuf.StringValue _vpc_config_subnet = 17;
4596
4616
  google.protobuf.StringValue _vpc_config_security_group = 18;
4597
4617
  google.protobuf.Int64Value _created_time = 19;
4598
- google.protobuf.StringValue _default_internet_access_state = 20;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4618
+ google.protobuf.StringValue _default_internet_access_state = 20; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4599
4619
  repeated CloudockitTag _tags = 21;
4600
4620
  }
4601
- message AmazonAppStreamStackUserPool{
4621
+ message AmazonAppStreamStackUserPool {
4602
4622
  google.protobuf.StringValue _full_name = 1;
4603
4623
  google.protobuf.StringValue _user_user_name = 2;
4604
- google.protobuf.StringValue _status = 3;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4624
+ google.protobuf.StringValue _status = 3; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4605
4625
  google.protobuf.StringValue _user_stack_association_stack_name = 4;
4606
4626
  }
4607
4627
  //Amazon EC2 Auto Scaling helps you ensure that you have the correct number of Amazon EC2 instances available to handle the load for your application.
4608
- message AmazonAutoScalingGroup{
4628
+ message AmazonAutoScalingGroup {
4609
4629
  repeated ScanningIssues _scanning_issues = 1;
4610
4630
  google.protobuf.StringValue _a_d_k__name = 2;
4611
4631
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4648,7 +4668,7 @@ message AmazonAutoScalingGroup{
4648
4668
  repeated StandardObjectDifference _differences = 40;
4649
4669
  repeated CDKRule _warnings = 41;
4650
4670
  }
4651
- message AmazonAutoScalingGroupInstance{
4671
+ message AmazonAutoScalingGroupInstance {
4652
4672
  google.protobuf.StringValue _instance_id = 1;
4653
4673
  google.protobuf.StringValue _lifecycle_state = 2;
4654
4674
  google.protobuf.StringValue _launch_template_name = 3;
@@ -4656,7 +4676,7 @@ message AmazonAutoScalingGroupInstance{
4656
4676
  google.protobuf.StringValue _health_status = 5;
4657
4677
  }
4658
4678
  //Contains detailed information about a backup job.
4659
- message AmazonBackupJob{
4679
+ message AmazonBackupJob {
4660
4680
  repeated ScanningIssues _scanning_issues = 1;
4661
4681
  google.protobuf.StringValue _a_d_k__name = 2;
4662
4682
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4672,7 +4692,7 @@ message AmazonBackupJob{
4672
4692
  repeated CDKRule _warnings = 13;
4673
4693
  }
4674
4694
  //In AWS Backup, a backup plan is a policy expression that defines when and how you want to back up your AWS resources, such as Amazon DynamoDB tables or Amazon Elastic File System (Amazon EFS) file systems.
4675
- message AmazonBackupPlan{
4695
+ message AmazonBackupPlan {
4676
4696
  repeated ScanningIssues _scanning_issues = 1;
4677
4697
  google.protobuf.StringValue _a_d_k__name = 2;
4678
4698
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4686,7 +4706,7 @@ message AmazonBackupPlan{
4686
4706
  repeated CDKRule _warnings = 11;
4687
4707
  }
4688
4708
  //Specifies a scheduled task used to back up a selection of resources.
4689
- message AmazonBackupRule{
4709
+ message AmazonBackupRule {
4690
4710
  repeated ScanningIssues _scanning_issues = 1;
4691
4711
  google.protobuf.StringValue _rule_name = 2;
4692
4712
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4699,7 +4719,7 @@ message AmazonBackupRule{
4699
4719
  repeated CloudockitTag _recovery_point_tags = 10;
4700
4720
  repeated AmazonCopyAction _amazon_backup_copy_actions = 11;
4701
4721
  }
4702
- message AmazonCopyAction{
4722
+ message AmazonCopyAction {
4703
4723
  google.protobuf.StringValue _destination_region = 1;
4704
4724
  google.protobuf.StringValue _destination_backup_vault_a_d_k__g_u_i_d = 2;
4705
4725
  google.protobuf.StringValue _destination_backup_vault_a_d_k__name = 3;
@@ -4707,7 +4727,7 @@ message AmazonCopyAction{
4707
4727
  google.protobuf.StringValue _lifecycle_delete_after_days_description = 5;
4708
4728
  }
4709
4729
  //In AWS Backup, a backup vault is a container that you organize your backups in. You can use backup vaults to set the AWS Key Management Service (AWS KMS) encryption key that is used to encrypt backups in the backup vault and to control access to the backups in the backup vault.
4710
- message AmazonBackupVault{
4730
+ message AmazonBackupVault {
4711
4731
  repeated ScanningIssues _scanning_issues = 1;
4712
4732
  google.protobuf.StringValue _a_d_k__name = 2;
4713
4733
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4720,7 +4740,7 @@ message AmazonBackupVault{
4720
4740
  repeated StandardObjectDifference _differences = 10;
4721
4741
  repeated CDKRule _warnings = 11;
4722
4742
  }
4723
- message AmazonDescribeRecoveryPointResponse{
4743
+ message AmazonDescribeRecoveryPointResponse {
4724
4744
  google.protobuf.StringValue _recovery_point_id = 1;
4725
4745
  google.protobuf.StringValue _recovery_point_arn = 2;
4726
4746
  google.protobuf.StringValue _resource_id = 3;
@@ -4736,8 +4756,8 @@ message AmazonDescribeRecoveryPointResponse{
4736
4756
  google.protobuf.StringValue _created_by_backup_plan_id_and_version = 13;
4737
4757
  google.protobuf.StringValue _iam_role_arn = 14;
4738
4758
  }
4739
- //Job queues are mapped to one or more compute environments. Compute environments contain the Amazon ECS container instances that are used to run containerized batch jobs. A given compute environment can also be mapped to one or many job queues.
4740
- message AmazonBatchComputeEnvironment{
4759
+ //Job queues are mapped to one or more compute environments. Compute environments contain the Amazon ECS container instances that are used to run containerized batch jobs. A given compute environment can also be mapped to one or many job queues.
4760
+ message AmazonBatchComputeEnvironment {
4741
4761
  repeated ScanningIssues _scanning_issues = 1;
4742
4762
  google.protobuf.StringValue _a_d_k__name = 2;
4743
4763
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4753,7 +4773,7 @@ message AmazonBatchComputeEnvironment{
4753
4773
  repeated StandardObjectDifference _differences = 13;
4754
4774
  repeated CDKRule _warnings = 14;
4755
4775
  }
4756
- message AmazonBatchComputeResource{
4776
+ message AmazonBatchComputeResource {
4757
4777
  google.protobuf.StringValue _minv_cpus = 1;
4758
4778
  google.protobuf.StringValue _desiredv_cpus = 2;
4759
4779
  google.protobuf.StringValue _maxv_cpus = 3;
@@ -4771,7 +4791,7 @@ message AmazonBatchComputeResource{
4771
4791
  google.protobuf.StringValue _placement_group = 15;
4772
4792
  }
4773
4793
  //AWS Batch job definitions specify how jobs are to be run. While each job must reference a job definition, many of the parameters that are specified in the job definition can be overridden at runtime.
4774
- message AmazonBatchJobDefinition{
4794
+ message AmazonBatchJobDefinition {
4775
4795
  repeated ScanningIssues _scanning_issues = 1;
4776
4796
  google.protobuf.StringValue _a_d_k__name = 2;
4777
4797
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4796,27 +4816,27 @@ message AmazonBatchJobDefinition{
4796
4816
  repeated StandardObjectDifference _differences = 22;
4797
4817
  repeated CDKRule _warnings = 23;
4798
4818
  }
4799
- message AmazonBatchUlimit{
4819
+ message AmazonBatchUlimit {
4800
4820
  google.protobuf.StringValue _name = 1;
4801
4821
  google.protobuf.Int32Value _source_volume = 2;
4802
4822
  google.protobuf.Int32Value _hard_limit = 3;
4803
4823
  }
4804
- message AmazonBatchDevice{
4824
+ message AmazonBatchDevice {
4805
4825
  google.protobuf.StringValue _host_path = 1;
4806
4826
  google.protobuf.StringValue _container_path = 2;
4807
4827
  google.protobuf.StringValue _permissions = 3;
4808
4828
  }
4809
- message AmazonBatchVolume{
4829
+ message AmazonBatchVolume {
4810
4830
  google.protobuf.StringValue _name = 1;
4811
4831
  google.protobuf.StringValue _source_path = 2;
4812
4832
  }
4813
- message AmazonBatchMountPoint{
4833
+ message AmazonBatchMountPoint {
4814
4834
  google.protobuf.StringValue _container_path = 1;
4815
4835
  google.protobuf.StringValue _source_volume = 2;
4816
4836
  google.protobuf.StringValue _read_only = 3;
4817
4837
  }
4818
4838
  //Jobs are submitted to a job queue, where they reside until they are able to be scheduled to run in a compute environment. An AWS account can have multiple job queues.
4819
- message AmazonBatchJobQueue{
4839
+ message AmazonBatchJobQueue {
4820
4840
  repeated ScanningIssues _scanning_issues = 1;
4821
4841
  google.protobuf.StringValue _a_d_k__name = 2;
4822
4842
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4828,12 +4848,12 @@ message AmazonBatchJobQueue{
4828
4848
  repeated StandardObjectDifference _differences = 9;
4829
4849
  repeated CDKRule _warnings = 10;
4830
4850
  }
4831
- message AmazonBatchComputeEnvironmentOrder{
4851
+ message AmazonBatchComputeEnvironmentOrder {
4832
4852
  google.protobuf.Int32Value _order = 1;
4833
4853
  repeated CloudockitTag _c_e_key_values = 2;
4834
4854
  }
4835
4855
  //Amazon CloudFront speeds up distribution of your static and dynamic web content, such as .html, .css, .php, image, and media files. When users request your content, CloudFront delivers it through a worldwide network of edge locations that provide low latency and high performance.
4836
- message AmazonCloudFrontDistribution{
4856
+ message AmazonCloudFrontDistribution {
4837
4857
  repeated ScanningIssues _scanning_issues = 1;
4838
4858
  google.protobuf.StringValue _a_d_k__name = 2;
4839
4859
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4849,7 +4869,7 @@ message AmazonCloudFrontDistribution{
4849
4869
  repeated CDKRule _warnings = 13;
4850
4870
  }
4851
4871
  //Amazon CloudSearch is a fully managed service in the cloud that makes it easy to set up, manage, and scale a search solution for your website. Amazon CloudSearch enables you to search large collections of data such as web pages, document files, forum posts, or product information. With Amazon CloudSearch, you can quickly add search capabilities to your website without having to become a search expert or worry about hardware provisioning, setup, and maintenance. As your volume of data and traffic fluctuates, Amazon CloudSearch automatically scales to meet your needs.
4852
- message AmazonCloudSearch{
4872
+ message AmazonCloudSearch {
4853
4873
  repeated ScanningIssues _scanning_issues = 1;
4854
4874
  google.protobuf.StringValue _a_d_k__name = 2;
4855
4875
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4869,7 +4889,7 @@ message AmazonCloudSearch{
4869
4889
  repeated CDKRule _warnings = 17;
4870
4890
  }
4871
4891
  //Amazon CloudWatch provides a reliable, scalable, and flexible monitoring solution that you can start using within minutes. You no longer need to set up, manage, and scale your own monitoring systems and infrastructure.
4872
- message AmazonCloudWatch{
4892
+ message AmazonCloudWatch {
4873
4893
  repeated ScanningIssues _scanning_issues = 1;
4874
4894
  google.protobuf.StringValue _a_d_k__name = 2;
4875
4895
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4883,7 +4903,7 @@ message AmazonCloudWatch{
4883
4903
  repeated CDKRule _warnings = 11;
4884
4904
  }
4885
4905
  //AWS CodePipeline is a continuous delivery service that enables you to model, visualize, and automate the steps required to release your software.
4886
- message AmazonCodePipeline{
4906
+ message AmazonCodePipeline {
4887
4907
  repeated ScanningIssues _scanning_issues = 1;
4888
4908
  google.protobuf.StringValue _a_d_k__name = 2;
4889
4909
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4896,7 +4916,7 @@ message AmazonCodePipeline{
4896
4916
  repeated CDKRule _warnings = 10;
4897
4917
  }
4898
4918
  //Contains detailed information about a copy job.
4899
- message AmazonCopyJob{
4919
+ message AmazonCopyJob {
4900
4920
  repeated ScanningIssues _scanning_issues = 1;
4901
4921
  google.protobuf.StringValue _a_d_k__name = 2;
4902
4922
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4911,8 +4931,8 @@ message AmazonCopyJob{
4911
4931
  repeated StandardObjectDifference _differences = 12;
4912
4932
  repeated CDKRule _warnings = 13;
4913
4933
  }
4914
- //A customer gateway resource in AWS, which provides information to AWS about your Customer Gateway Device.
4915
- message AmazonCustomerGateway{
4934
+ //A customer gateway resource in AWS, which provides information to AWS about your Customer Gateway Device.
4935
+ message AmazonCustomerGateway {
4916
4936
  repeated ScanningIssues _scanning_issues = 1;
4917
4937
  google.protobuf.StringValue _a_d_k__name = 2;
4918
4938
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4927,7 +4947,7 @@ message AmazonCustomerGateway{
4927
4947
  repeated CDKRule _warnings = 12;
4928
4948
  }
4929
4949
  //AWS Directory Service provides multiple ways to set up and run Amazon Cloud Directory, Amazon Cognito, and Microsoft AD with other AWS services.
4930
- message AmazonDirectoryService{
4950
+ message AmazonDirectoryService {
4931
4951
  repeated ScanningIssues _scanning_issues = 1;
4932
4952
  google.protobuf.StringValue _a_d_k__name = 2;
4933
4953
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4949,7 +4969,7 @@ message AmazonDirectoryService{
4949
4969
  repeated CDKRule _warnings = 19;
4950
4970
  }
4951
4971
  //An Amazon DocumentDB cluster consists of instances and a cluster volume that represents the data for the cluster.
4952
- message AmazonDocumentDBCluster{
4972
+ message AmazonDocumentDBCluster {
4953
4973
  repeated ScanningIssues _scanning_issues = 1;
4954
4974
  google.protobuf.StringValue _a_d_k__name = 2;
4955
4975
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4965,12 +4985,12 @@ message AmazonDocumentDBCluster{
4965
4985
  google.protobuf.StringValue _master_username = 13;
4966
4986
  google.protobuf.Int32Value _port = 14;
4967
4987
  google.protobuf.StringValue _d_b_cluster_parameter_group = 15;
4968
- google.protobuf.StringValue _deletion_protection_status = 16;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4988
+ google.protobuf.StringValue _deletion_protection_status = 16; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4969
4989
  google.protobuf.StringValue _automated_backups = 17;
4970
4990
  google.protobuf.Int64Value _earliest_restorable_time = 18;
4971
4991
  google.protobuf.Int64Value _latest_restorable_time = 19;
4972
4992
  google.protobuf.StringValue _preferred_backup_window = 20;
4973
- google.protobuf.StringValue _enable_encryption_at_rest = 21;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4993
+ google.protobuf.StringValue _enable_encryption_at_rest = 21; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
4974
4994
  google.protobuf.StringValue _kms_key_id = 22;
4975
4995
  google.protobuf.StringValue _security_groups_name = 23;
4976
4996
  repeated AmazonDocumentDBInstance _d_b_instances = 24;
@@ -4978,8 +4998,8 @@ message AmazonDocumentDBCluster{
4978
4998
  repeated StandardObjectDifference _differences = 26;
4979
4999
  repeated CDKRule _warnings = 27;
4980
5000
  }
4981
- //The instance class determines the computation and memory capacity of an Amazon DocumentDB (with MongoDB compatibility) instance.
4982
- message AmazonDocumentDBInstance{
5001
+ //The instance class determines the computation and memory capacity of an Amazon DocumentDB (with MongoDB compatibility) instance.
5002
+ message AmazonDocumentDBInstance {
4983
5003
  repeated ScanningIssues _scanning_issues = 1;
4984
5004
  google.protobuf.StringValue _a_d_k__name = 2;
4985
5005
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -4990,7 +5010,7 @@ message AmazonDocumentDBInstance{
4990
5010
  google.protobuf.Int64Value _instance_create_time = 8;
4991
5011
  google.protobuf.StringValue _endpoint_address = 9;
4992
5012
  google.protobuf.Int32Value _endpoint_port = 10;
4993
- google.protobuf.StringValue _instance_role = 11;//. Possible Values are : Primary,Replica
5013
+ google.protobuf.StringValue _instance_role = 11; //. Possible Values are : Primary,Replica
4994
5014
  google.protobuf.StringValue _c_a_certificate_identifier = 12;
4995
5015
  google.protobuf.StringValue _availability_zone = 13;
4996
5016
  google.protobuf.StringValue _linked_vpc_a_d_k__g_u_i_d = 14;
@@ -4998,7 +5018,7 @@ message AmazonDocumentDBInstance{
4998
5018
  repeated CloudockitTag _tags = 16;
4999
5019
  }
5000
5020
  //Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. You can use Amazon DynamoDB to create a database table that can store and retrieve any amount of data, and serve any level of request traffic. Amazon DynamoDB automatically spreads the data and traffic for the table over a sufficient number of servers to handle the request capacity specified by the customer and the amount of data stored, while maintaining consistent and fast performance.
5001
- message AmazonDynamoDB{
5021
+ message AmazonDynamoDB {
5002
5022
  repeated ScanningIssues _scanning_issues = 1;
5003
5023
  google.protobuf.StringValue _a_d_k__name = 2;
5004
5024
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5016,7 +5036,7 @@ message AmazonDynamoDB{
5016
5036
  repeated CDKRule _warnings = 15;
5017
5037
  }
5018
5038
  //An Amazon EBS volume is a durable, block-level storage device that you can attach to your instances. You can dynamically increase size, modify the provisioned IOPS capacity, and change volume type on live production volumes.
5019
- message AmazonVolume{
5039
+ message AmazonVolume {
5020
5040
  repeated ScanningIssues _scanning_issues = 1;
5021
5041
  google.protobuf.StringValue _a_d_k__name = 2;
5022
5042
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5038,7 +5058,7 @@ message AmazonVolume{
5038
5058
  repeated CDKRule _warnings = 19;
5039
5059
  }
5040
5060
  //Amazon Elastic Compute Cloud (Amazon EC2) is a web service that provides resizeable computing capacity—literally, servers in Amazon's data centers—that you use to build and host your software systems.
5041
- message AmazonEC2Instance{
5061
+ message AmazonEC2Instance {
5042
5062
  repeated ScanningIssues _scanning_issues = 1;
5043
5063
  google.protobuf.StringValue _a_d_k__name = 2;
5044
5064
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5089,7 +5109,7 @@ message AmazonEC2Instance{
5089
5109
  repeated CDKRule _warnings = 48;
5090
5110
  }
5091
5111
  //An elastic network interface (referred to as a network interface in this documentation) is a logical networking component in a VPC that represents a virtual network card.
5092
- message AmazonEC2Nic{
5112
+ message AmazonEC2Nic {
5093
5113
  repeated ScanningIssues _scanning_issues = 1;
5094
5114
  google.protobuf.StringValue _network_interface_id = 2;
5095
5115
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5117,7 +5137,7 @@ message AmazonEC2Nic{
5117
5137
  repeated CloudockitTag _tags = 25;
5118
5138
  }
5119
5139
  //A security group acts as a virtual firewall for your instance to control inbound and outbound traffic.
5120
- message AmazonSecurityGroup{
5140
+ message AmazonSecurityGroup {
5121
5141
  repeated ScanningIssues _scanning_issues = 1;
5122
5142
  google.protobuf.StringValue _group_name = 2;
5123
5143
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5130,20 +5150,20 @@ message AmazonSecurityGroup{
5130
5150
  repeated AmazonSecurityGroupOutbound _outbounds = 10;
5131
5151
  repeated CloudockitTag _tags = 11;
5132
5152
  }
5133
- message AmazonSecurityGroupInbound{
5153
+ message AmazonSecurityGroupInbound {
5134
5154
  google.protobuf.StringValue _protocol = 1;
5135
5155
  google.protobuf.StringValue _port_range_display = 2;
5136
5156
  google.protobuf.StringValue _source = 3;
5137
5157
  google.protobuf.StringValue _description = 4;
5138
5158
  }
5139
- message AmazonSecurityGroupOutbound{
5159
+ message AmazonSecurityGroupOutbound {
5140
5160
  google.protobuf.StringValue _protocol = 1;
5141
5161
  google.protobuf.StringValue _port_range_display = 2;
5142
5162
  google.protobuf.StringValue _destination = 3;
5143
5163
  google.protobuf.StringValue _description = 4;
5144
5164
  }
5145
5165
  //Amazon EC2 Reserved Instances (RI) provide a significant discount (up to 75%) compared to On-Demand pricing and provide a capacity reservation when used in a specific Availability Zone.
5146
- message AmazonEC2ReservedInstance{
5166
+ message AmazonEC2ReservedInstance {
5147
5167
  repeated ScanningIssues _scanning_issues = 1;
5148
5168
  google.protobuf.StringValue _a_d_k__name = 2;
5149
5169
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5168,7 +5188,7 @@ message AmazonEC2ReservedInstance{
5168
5188
  repeated CDKRule _warnings = 22;
5169
5189
  }
5170
5190
  //Amazon Elastic Container Registry (Amazon ECR) provides API operations to create, monitor, and delete image repositories and set permissions that control who can access them. You can perform the same actions in the Repositories section of the Amazon ECR console. Amazon ECR also integrates with the Docker CLI allowing you to push and pull images from your development environments to your repositories.
5171
- message AmazonECRRepository{
5191
+ message AmazonECRRepository {
5172
5192
  repeated ScanningIssues _scanning_issues = 1;
5173
5193
  google.protobuf.StringValue _a_d_k__name = 2;
5174
5194
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5180,7 +5200,7 @@ message AmazonECRRepository{
5180
5200
  repeated CDKRule _warnings = 9;
5181
5201
  }
5182
5202
  //Amazon Elastic Container Registry (Amazon ECR) stores Docker images in image repositories. You can use the Docker CLI to push and pull images from your repositories.
5183
- message AmazonECRImage{
5203
+ message AmazonECRImage {
5184
5204
  repeated ScanningIssues _scanning_issues = 1;
5185
5205
  google.protobuf.StringValue _image_tags_text = 2;
5186
5206
  google.protobuf.StringValue _image_digest = 3;
@@ -5188,7 +5208,7 @@ message AmazonECRImage{
5188
5208
  google.protobuf.Int64Value _image_pushed_at = 5;
5189
5209
  }
5190
5210
  //Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster of Amazon EC2 instances.
5191
- message AmazonECSCluster{
5211
+ message AmazonECSCluster {
5192
5212
  repeated ScanningIssues _scanning_issues = 1;
5193
5213
  google.protobuf.StringValue _a_d_k__name = 2;
5194
5214
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5212,7 +5232,7 @@ message AmazonECSCluster{
5212
5232
  repeated CDKRule _warnings = 21;
5213
5233
  }
5214
5234
  //Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster. You can host your cluster on a serverless infrastructure that is managed by Amazon ECS by launching your services or tasks using the Fargate launch type.
5215
- message AmazonECSService{
5235
+ message AmazonECSService {
5216
5236
  repeated ScanningIssues _scanning_issues = 1;
5217
5237
  google.protobuf.StringValue _service_name = 2;
5218
5238
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5237,7 +5257,7 @@ message AmazonECSService{
5237
5257
  repeated CloudockitTag _tags = 22;
5238
5258
  }
5239
5259
  //Details on a task in a cluster.
5240
- message AmazonECSTask{
5260
+ message AmazonECSTask {
5241
5261
  repeated ScanningIssues _scanning_issues = 1;
5242
5262
  google.protobuf.StringValue _task_arn = 2;
5243
5263
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5263,7 +5283,7 @@ message AmazonECSTask{
5263
5283
  google.protobuf.StringValue _mac_address_text = 23;
5264
5284
  }
5265
5285
  //An EC2 instance that is running the Amazon ECS agent and has been registered with a cluster.
5266
- message AmazonECSContainerInstance{
5286
+ message AmazonECSContainerInstance {
5267
5287
  repeated ScanningIssues _scanning_issues = 1;
5268
5288
  google.protobuf.StringValue _a_d_k__name = 2;
5269
5289
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5276,7 +5296,7 @@ message AmazonECSContainerInstance{
5276
5296
  google.protobuf.StringValue _version_detail_docker_version = 10;
5277
5297
  }
5278
5298
  //Amazon EFS provides file storage for your Amazon EC2 instances. With Amazon EFS, you can create a file system, mount the file system on your EC2 instances, and then read and write data from your EC2 instances to and from your file system.
5279
- message AmazonEFSFileSystem{
5299
+ message AmazonEFSFileSystem {
5280
5300
  repeated ScanningIssues _scanning_issues = 1;
5281
5301
  google.protobuf.StringValue _a_d_k__name = 2;
5282
5302
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5296,7 +5316,7 @@ message AmazonEFSFileSystem{
5296
5316
  repeated CDKRule _warnings = 17;
5297
5317
  }
5298
5318
  //Amazon EFS provides file storage for your Amazon EC2 instances. With Amazon EFS, you can create a file system, mount the file system on your EC2 instances, and then read and write data from your EC2 instances to and from your file system.
5299
- message AmazonMountTargetDescription{
5319
+ message AmazonMountTargetDescription {
5300
5320
  repeated ScanningIssues _scanning_issues = 1;
5301
5321
  google.protobuf.StringValue _vpc_description = 2;
5302
5322
  google.protobuf.StringValue _availability_zone = 3;
@@ -5308,7 +5328,7 @@ message AmazonMountTargetDescription{
5308
5328
  google.protobuf.StringValue _life_cycle_state = 9;
5309
5329
  }
5310
5330
  //An object representing an Amazon EKS cluster.
5311
- message AmazonEKSCluster{
5331
+ message AmazonEKSCluster {
5312
5332
  repeated ScanningIssues _scanning_issues = 1;
5313
5333
  google.protobuf.StringValue _a_d_k__name = 2;
5314
5334
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5336,7 +5356,7 @@ message AmazonEKSCluster{
5336
5356
  repeated CDKRule _warnings = 25;
5337
5357
  }
5338
5358
  //Amazon EKS managed node groups automate the provisioning and lifecycle management of nodes (Amazon EC2 instances) for Amazon EKS Kubernetes clusters.
5339
- message AmazonEKSNodegroup{
5359
+ message AmazonEKSNodegroup {
5340
5360
  repeated ScanningIssues _scanning_issues = 1;
5341
5361
  google.protobuf.StringValue _a_d_k__name = 2;
5342
5362
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5359,7 +5379,7 @@ message AmazonEKSNodegroup{
5359
5379
  google.protobuf.StringValue _allow_remote_access_from = 20;
5360
5380
  }
5361
5381
  //Amazon ElastiCache makes it easy to set up, manage, and scale distributed in-memory cache environments in the AWS Cloud. It provides a high performance, resizable, and cost-effective in-memory cache, while removing complexity associated with deploying and managing a distributed cache environment. ElastiCache works with both the Redis and Memcached engines; to see which works best for you, see the Comparing Memcached and Redis topic in either user guide.
5362
- message AmazonElastiCache{
5382
+ message AmazonElastiCache {
5363
5383
  repeated ScanningIssues _scanning_issues = 1;
5364
5384
  google.protobuf.StringValue _a_d_k__name = 2;
5365
5385
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5374,7 +5394,7 @@ message AmazonElastiCache{
5374
5394
  repeated CDKRule _warnings = 12;
5375
5395
  }
5376
5396
  //With AWS Elastic Beanstalk, you can quickly deploy and manage applications in the AWS Cloud without worrying about the infrastructure that runs those applications. AWS Elastic Beanstalk reduces management complexity without restricting choice or control. You simply upload your application, and AWS Elastic Beanstalk automatically handles the details of capacity provisioning, load balancing, scaling, and application health monitoring.
5377
- message AmazonElasticBeanstalkApplication{
5397
+ message AmazonElasticBeanstalkApplication {
5378
5398
  repeated ScanningIssues _scanning_issues = 1;
5379
5399
  google.protobuf.StringValue _a_d_k__name = 2;
5380
5400
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5390,7 +5410,7 @@ message AmazonElasticBeanstalkApplication{
5390
5410
  repeated CDKRule _warnings = 13;
5391
5411
  }
5392
5412
  //AWS Elastic Beanstalk makes it easy to create new environments for your application. You can create and manage separate environments for development, testing, and production use, and you can deploy any version of your application to any environment. Environments can be long-running or temporary. When you terminate an environment, you can save its configuration to recreate it later.
5393
- message AmazonElasticBeanstalkEnvironment{
5413
+ message AmazonElasticBeanstalkEnvironment {
5394
5414
  repeated ScanningIssues _scanning_issues = 1;
5395
5415
  google.protobuf.StringValue _environment_name = 2;
5396
5416
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5409,15 +5429,15 @@ message AmazonElasticBeanstalkEnvironment{
5409
5429
  repeated AmazonElasticBeanstalkConfigurationSettingsDescription _conf_settings = 16;
5410
5430
  repeated CloudockitTag _tags = 17;
5411
5431
  }
5412
- message AmazonElasticBeanstalkConfigurationSettingsDescription{
5432
+ message AmazonElasticBeanstalkConfigurationSettingsDescription {
5413
5433
  repeated AmazonElasticBeanstalkConfigurationOptionSettings _options_settings = 1;
5414
5434
  }
5415
- message AmazonElasticBeanstalkConfigurationOptionSettings{
5435
+ message AmazonElasticBeanstalkConfigurationOptionSettings {
5416
5436
  google.protobuf.StringValue _option_name = 1;
5417
5437
  google.protobuf.StringValue _value = 2;
5418
5438
  }
5419
5439
  //Elasticsearch Service (Amazon ES) is a managed service that makes it easy to deploy, operate, and scale Elasticsearch clusters in the AWS Cloud.
5420
- message AmazonElasticsearchDomainStatus{
5440
+ message AmazonElasticsearchDomainStatus {
5421
5441
  repeated ScanningIssues _scanning_issues = 1;
5422
5442
  google.protobuf.StringValue _a_d_k__name = 2;
5423
5443
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5449,7 +5469,7 @@ message AmazonElasticsearchDomainStatus{
5449
5469
  repeated CDKRule _warnings = 29;
5450
5470
  }
5451
5471
  //A load balancer serves as the single point of contact for clients. The load balancer distributes incoming application traffic across multiple targets, such as EC2 instances, in multiple Availability Zones. This increases the availability of your application.
5452
- message AmazonELBApplicationLoadBalancer{
5472
+ message AmazonELBApplicationLoadBalancer {
5453
5473
  repeated ScanningIssues _scanning_issues = 1;
5454
5474
  google.protobuf.StringValue _a_d_k__name = 2;
5455
5475
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5475,7 +5495,7 @@ message AmazonELBApplicationLoadBalancer{
5475
5495
  repeated CDKRule _warnings = 23;
5476
5496
  }
5477
5497
  //A listener checks for connection requests from clients, using the protocol and port that you configure, and forwards requests to one or more target groups, based on the rules that you define.
5478
- message AmazonELBApplicationListener{
5498
+ message AmazonELBApplicationListener {
5479
5499
  repeated ScanningIssues _scanning_issues = 1;
5480
5500
  google.protobuf.StringValue _listener_id = 2;
5481
5501
  google.protobuf.StringValue _listener_arn = 3;
@@ -5484,7 +5504,7 @@ message AmazonELBApplicationListener{
5484
5504
  google.protobuf.StringValue _rules_text = 6;
5485
5505
  }
5486
5506
  //Elastic Load Balancing automatically distributes your incoming application traffic across multiple targets, such as EC2 instances. It monitors the health of registered targets and routes traffic only to the healthy targets. Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers.
5487
- message AmazonELBClassicLoadBalancer{
5507
+ message AmazonELBClassicLoadBalancer {
5488
5508
  repeated ScanningIssues _scanning_issues = 1;
5489
5509
  google.protobuf.StringValue _a_d_k__name = 2;
5490
5510
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5514,20 +5534,20 @@ message AmazonELBClassicLoadBalancer{
5514
5534
  repeated StandardObjectDifference _differences = 27;
5515
5535
  repeated CDKRule _warnings = 28;
5516
5536
  }
5517
- message AmazonELBClassicInstance{
5537
+ message AmazonELBClassicInstance {
5518
5538
  google.protobuf.StringValue _instance_id = 1;
5519
5539
  google.protobuf.StringValue _name = 2;
5520
5540
  google.protobuf.StringValue _availability_zone = 3;
5521
5541
  google.protobuf.StringValue _state = 4;
5522
5542
  }
5523
- message AmazonELBClassicListener{
5543
+ message AmazonELBClassicListener {
5524
5544
  google.protobuf.StringValue _protocol = 1;
5525
5545
  google.protobuf.Int32Value _load_balancer_port = 2;
5526
5546
  google.protobuf.StringValue _instance_protocol = 3;
5527
5547
  google.protobuf.Int32Value _instance_port = 4;
5528
5548
  }
5529
5549
  //Elastic Load Balancing automatically distributes your incoming application traffic across multiple targets, such as EC2 instances. It monitors the health of registered targets and routes traffic only to the healthy targets. Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers.
5530
- message AmazonELBNetworkLoadBalancer{
5550
+ message AmazonELBNetworkLoadBalancer {
5531
5551
  repeated ScanningIssues _scanning_issues = 1;
5532
5552
  google.protobuf.StringValue _a_d_k__name = 2;
5533
5553
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5550,14 +5570,14 @@ message AmazonELBNetworkLoadBalancer{
5550
5570
  repeated CDKRule _warnings = 20;
5551
5571
  }
5552
5572
  //A listener is a process that checks for connection requests, using the protocol and port that you configure.
5553
- message AmazonELBNetworkListener{
5573
+ message AmazonELBNetworkListener {
5554
5574
  repeated ScanningIssues _scanning_issues = 1;
5555
5575
  google.protobuf.StringValue _listener_id = 2;
5556
5576
  google.protobuf.StringValue _listener_arn = 3;
5557
5577
  google.protobuf.StringValue _rules_text = 4;
5558
5578
  }
5559
5579
  //Amazon EMR is a web service that makes it easy to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several AWS products to do such tasks as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehousing.
5560
- message AmazonEMR{
5580
+ message AmazonEMR {
5561
5581
  repeated ScanningIssues _scanning_issues = 1;
5562
5582
  google.protobuf.StringValue _a_d_k__name = 2;
5563
5583
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5582,7 +5602,7 @@ message AmazonEMR{
5582
5602
  repeated CDKRule _warnings = 22;
5583
5603
  }
5584
5604
  //Amazon Simple Storage Service Glacier (Amazon S3 Glacier) is a storage service optimized for infrequently used data, or "cold data." The service provides durable and extremely low-cost storage with security features for data archiving and backup. With Amazon S3 Glacier, you can store your data cost effectively for months, years, or even decades. Amazon S3 Glacier enables you to offload the administrative burdens of operating and scaling storage to AWS, so you don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure detection and recovery, or time-consuming hardware migrations. For more service highlights and pricing information, go to the Amazon S3 Glacier detail page.
5585
- message AmazonGlacierVault{
5605
+ message AmazonGlacierVault {
5586
5606
  repeated ScanningIssues _scanning_issues = 1;
5587
5607
  google.protobuf.StringValue _a_d_k__name = 2;
5588
5608
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5598,7 +5618,7 @@ message AmazonGlacierVault{
5598
5618
  repeated CDKRule _warnings = 13;
5599
5619
  }
5600
5620
  //An IAM group is a collection of IAM users. Groups let you specify permissions for multiple users, which can make it easier to manage the permissions for those users.
5601
- message AmazonIamGroup{
5621
+ message AmazonIamGroup {
5602
5622
  repeated ScanningIssues _scanning_issues = 1;
5603
5623
  google.protobuf.StringValue _a_d_k__name = 2;
5604
5624
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5614,7 +5634,7 @@ message AmazonIamGroup{
5614
5634
  google.protobuf.StringValue _group_name = 13;
5615
5635
  }
5616
5636
  //An AWS Identity and Access Management (IAM) user is an entity that you create in AWS to represent the person or application that uses it to interact with AWS. A user in AWS consists of a name and credentials.
5617
- message AmazonIamUser{
5637
+ message AmazonIamUser {
5618
5638
  repeated ScanningIssues _scanning_issues = 1;
5619
5639
  google.protobuf.StringValue _user_name = 2;
5620
5640
  google.protobuf.StringValue _create_date_formatted = 3;
@@ -5630,7 +5650,7 @@ message AmazonIamUser{
5630
5650
  repeated CDKRule _warnings = 13;
5631
5651
  }
5632
5652
  //An AWS managed policy is a standalone policy that is created and administered by AWS. Standalone policy means that the policy has its own Amazon Resource Name (ARN) that includes the policy name.
5633
- message AmazonIamPolicy{
5653
+ message AmazonIamPolicy {
5634
5654
  repeated ScanningIssues _scanning_issues = 1;
5635
5655
  google.protobuf.StringValue _policy_name = 2;
5636
5656
  google.protobuf.StringValue _create_date_formatted = 3;
@@ -5643,12 +5663,12 @@ message AmazonIamPolicy{
5643
5663
  repeated StandardObjectDifference _differences = 10;
5644
5664
  repeated CDKRule _warnings = 11;
5645
5665
  }
5646
- message AmazonIamPolicyVersion{
5666
+ message AmazonIamPolicyVersion {
5647
5667
  google.protobuf.StringValue _version_text = 1;
5648
5668
  google.protobuf.StringValue _create_date_formatted = 2;
5649
5669
  }
5650
5670
  //An IAM role is an IAM identity that you can create in your account that has specific permissions. An IAM role is similar to an IAM user, in that it is an AWS identity with permission policies that determine what the identity can and cannot do in AWS.
5651
- message AmazonIamRole{
5671
+ message AmazonIamRole {
5652
5672
  repeated ScanningIssues _scanning_issues = 1;
5653
5673
  google.protobuf.StringValue _a_d_k__name = 2;
5654
5674
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5663,8 +5683,8 @@ message AmazonIamRole{
5663
5683
  repeated CDKRule _warnings = 12;
5664
5684
  google.protobuf.StringValue _apply_status = 13;
5665
5685
  }
5666
- //An Amazon Machine Image (AMI) provides the information required to launch an instance. You must specify an AMI when you launch an instance.
5667
- message AmazonImageAMI{
5686
+ //An Amazon Machine Image (AMI) provides the information required to launch an instance. You must specify an AMI when you launch an instance.
5687
+ message AmazonImageAMI {
5668
5688
  repeated ScanningIssues _scanning_issues = 1;
5669
5689
  google.protobuf.StringValue _a_d_k__name = 2;
5670
5690
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5690,7 +5710,7 @@ message AmazonImageAMI{
5690
5710
  repeated CDKRule _warnings = 23;
5691
5711
  }
5692
5712
  //An internet gateway is a horizontally scaled, redundant, and highly available VPC component that allows communication between instances in your VPC and the internet. It therefore imposes no availability risks or bandwidth constraints on your network traffic.
5693
- message AmazonInternetGateway{
5713
+ message AmazonInternetGateway {
5694
5714
  repeated ScanningIssues _scanning_issues = 1;
5695
5715
  google.protobuf.StringValue _a_d_k__name = 2;
5696
5716
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5703,7 +5723,7 @@ message AmazonInternetGateway{
5703
5723
  repeated CDKRule _warnings = 10;
5704
5724
  }
5705
5725
  //All devices must have a device certificate, private key, and root CA certificate installed in order to communicate with AWS IoT.
5706
- message AmazonIoTCertificate{
5726
+ message AmazonIoTCertificate {
5707
5727
  repeated ScanningIssues _scanning_issues = 1;
5708
5728
  google.protobuf.StringValue _a_d_k__name = 2;
5709
5729
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5716,7 +5736,7 @@ message AmazonIoTCertificate{
5716
5736
  repeated CDKRule _warnings = 10;
5717
5737
  }
5718
5738
  //AWS IoT policies are used to authorize your device to perform AWS IoT operations, such as subscribing or publishing to MQTT topics.
5719
- message AmazonIoTPolicy{
5739
+ message AmazonIoTPolicy {
5720
5740
  repeated ScanningIssues _scanning_issues = 1;
5721
5741
  google.protobuf.StringValue _a_d_k__name = 2;
5722
5742
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5728,7 +5748,7 @@ message AmazonIoTPolicy{
5728
5748
  repeated CDKRule _warnings = 9;
5729
5749
  }
5730
5750
  //All devices must have a device certificate, private key, and root CA certificate installed in order to communicate with AWS IoT. Consult your device's documentation to connect to it and copy your device certificate, private key, and root CA certificate onto your device.
5731
- message AmazonIoTThingAttribute{
5751
+ message AmazonIoTThingAttribute {
5732
5752
  repeated ScanningIssues _scanning_issues = 1;
5733
5753
  google.protobuf.StringValue _a_d_k__name = 2;
5734
5754
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5742,7 +5762,7 @@ message AmazonIoTThingAttribute{
5742
5762
  repeated CDKRule _warnings = 11;
5743
5763
  }
5744
5764
  //The AWS IoT rules engine listens for incoming MQTT messages that match a rule.
5745
- message AmazonIoTTopicRuleListItem{
5765
+ message AmazonIoTTopicRuleListItem {
5746
5766
  repeated ScanningIssues _scanning_issues = 1;
5747
5767
  google.protobuf.StringValue _a_d_k__name = 2;
5748
5768
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5757,7 +5777,7 @@ message AmazonIoTTopicRuleListItem{
5757
5777
  repeated CDKRule _warnings = 12;
5758
5778
  }
5759
5779
  //AWS Key Management Service (KMS) is an encryption and key management service scaled for the cloud. KMS keys and functionality are used by other AWS services, and you can use them to protect data in your own applications that use AWS.
5760
- message AmazonKeyMetadata{
5780
+ message AmazonKeyMetadata {
5761
5781
  repeated ScanningIssues _scanning_issues = 1;
5762
5782
  google.protobuf.StringValue _a_d_k__name = 2;
5763
5783
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5774,7 +5794,7 @@ message AmazonKeyMetadata{
5774
5794
  repeated CDKRule _warnings = 14;
5775
5795
  }
5776
5796
  //Process and analyze streaming data using SQL or Java.
5777
- message AmazonKinesisDataAnalytic{
5797
+ message AmazonKinesisDataAnalytic {
5778
5798
  repeated ScanningIssues _scanning_issues = 1;
5779
5799
  google.protobuf.StringValue _a_d_k__name = 2;
5780
5800
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5791,7 +5811,7 @@ message AmazonKinesisDataAnalytic{
5791
5811
  repeated CDKRule _warnings = 14;
5792
5812
  }
5793
5813
  //Load data streams into AWS data stores.
5794
- message AmazonKinesisDataFirehose{
5814
+ message AmazonKinesisDataFirehose {
5795
5815
  repeated ScanningIssues _scanning_issues = 1;
5796
5816
  google.protobuf.StringValue _a_d_k__name = 2;
5797
5817
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5805,7 +5825,7 @@ message AmazonKinesisDataFirehose{
5805
5825
  repeated CDKRule _warnings = 11;
5806
5826
  }
5807
5827
  //Amazon Simple Storage Service (Amazon S3) is storage for the internet. You can use Amazon S3 to store and retrieve any amount of data at any time, from anywhere on the web. You can accomplish these tasks using the simple and intuitive web interface of the AWS Management Console.
5808
- message AmazonS3DestinationBucket{
5828
+ message AmazonS3DestinationBucket {
5809
5829
  repeated ScanningIssues _scanning_issues = 1;
5810
5830
  google.protobuf.StringValue _bucket_a_r_n = 2;
5811
5831
  google.protobuf.StringValue _error_output_pref = 3;
@@ -5813,7 +5833,7 @@ message AmazonS3DestinationBucket{
5813
5833
  google.protobuf.StringValue _role_a_r_n = 5;
5814
5834
  }
5815
5835
  //Build custom applications that analyze data streams using popular stream-processing frameworks.
5816
- message AmazonKinesiDataStream{
5836
+ message AmazonKinesiDataStream {
5817
5837
  repeated ScanningIssues _scanning_issues = 1;
5818
5838
  google.protobuf.StringValue _a_d_k__name = 2;
5819
5839
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5828,7 +5848,7 @@ message AmazonKinesiDataStream{
5828
5848
  repeated CDKRule _warnings = 12;
5829
5849
  }
5830
5850
  //Capture, process, and store video streams for analytics and machine learning.
5831
- message AmazonKinesisVideoStream{
5851
+ message AmazonKinesisVideoStream {
5832
5852
  repeated ScanningIssues _scanning_issues = 1;
5833
5853
  google.protobuf.StringValue _a_d_k__name = 2;
5834
5854
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5846,7 +5866,7 @@ message AmazonKinesisVideoStream{
5846
5866
  repeated CDKRule _warnings = 15;
5847
5867
  }
5848
5868
  //With AWS Lambda, you can run code without provisioning or managing servers. You pay only for the compute time that you consume—there’s no charge when your code isn’t running. You can run code for virtually any type of application or backend service—all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.
5849
- message AmazonLambdaFunction{
5869
+ message AmazonLambdaFunction {
5850
5870
  repeated ScanningIssues _scanning_issues = 1;
5851
5871
  google.protobuf.StringValue _a_d_k__name = 2;
5852
5872
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5863,13 +5883,13 @@ message AmazonLambdaFunction{
5863
5883
  google.protobuf.StringValue _version = 14;
5864
5884
  google.protobuf.StringValue _vpc_a_d_k__g_u_i_d = 15;
5865
5885
  google.protobuf.StringValue _vpc_a_d_k__name = 16;
5866
- google.protobuf.StringValue _use_default_vpc = 17;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
5886
+ google.protobuf.StringValue _use_default_vpc = 17; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
5867
5887
  repeated CloudockitTag _tags = 18;
5868
5888
  repeated StandardObjectDifference _differences = 19;
5869
5889
  repeated CDKRule _warnings = 20;
5870
5890
  }
5871
5891
  //In Lightsail, your virtual private server is called an instance. You can connect to your instance, manage your ports and firewall settings, view metrics, associate a static IP with your instance.
5872
- message AmazonLightsailInstance{
5892
+ message AmazonLightsailInstance {
5873
5893
  repeated ScanningIssues _scanning_issues = 1;
5874
5894
  google.protobuf.StringValue _a_d_k__name = 2;
5875
5895
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5893,19 +5913,19 @@ message AmazonLightsailInstance{
5893
5913
  repeated CDKRule _warnings = 21;
5894
5914
  }
5895
5915
  //Describes a system disk or a block storage disk.
5896
- message AmazonLightsailDisk{
5916
+ message AmazonLightsailDisk {
5897
5917
  repeated ScanningIssues _scanning_issues = 1;
5898
5918
  google.protobuf.StringValue _size_in_gb = 2;
5899
5919
  google.protobuf.StringValue _path = 3;
5900
5920
  }
5901
- message AmazonLightsailInstanceFirewallRule{
5921
+ message AmazonLightsailInstanceFirewallRule {
5902
5922
  google.protobuf.StringValue _application = 1;
5903
5923
  google.protobuf.StringValue _protocol = 2;
5904
5924
  google.protobuf.StringValue _port_or_code = 3;
5905
5925
  google.protobuf.StringValue _restricted_to = 4;
5906
5926
  }
5907
5927
  //Lightsail’s simplified load balancing routes web traffic across your instances so that your websites and applications can accommodate variations in traffic, be better protected from outages, and deliver a seamless experience to your visitors.
5908
- message AmazonLightsailLoadBalancer{
5928
+ message AmazonLightsailLoadBalancer {
5909
5929
  repeated ScanningIssues _scanning_issues = 1;
5910
5930
  google.protobuf.StringValue _a_d_k__name = 2;
5911
5931
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5920,12 +5940,12 @@ message AmazonLightsailLoadBalancer{
5920
5940
  repeated StandardObjectDifference _differences = 12;
5921
5941
  repeated CDKRule _warnings = 13;
5922
5942
  }
5923
- message AmazonLightsailInstanceHealthSummary{
5943
+ message AmazonLightsailInstanceHealthSummary {
5924
5944
  google.protobuf.StringValue _instance_name = 1;
5925
5945
  google.protobuf.StringValue _instance_health = 2;
5926
5946
  }
5927
5947
  //Amazon Lightsail provides the latest major versions of the MySQL and PostgreSQL databases. This guide helps you decide which database is right for your project.
5928
- message AmazonLightsailRelationalDatabase{
5948
+ message AmazonLightsailRelationalDatabase {
5929
5949
  repeated ScanningIssues _scanning_issues = 1;
5930
5950
  google.protobuf.StringValue _a_d_k__name = 2;
5931
5951
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5943,7 +5963,7 @@ message AmazonLightsailRelationalDatabase{
5943
5963
  repeated CDKRule _warnings = 15;
5944
5964
  }
5945
5965
  //Amazon MQ is a managed message broker service for Apache ActiveMQ that makes it easy to set up and operate message brokers in the cloud. Amazon MQ provides interoperability with your existing applications and services. Amazon MQ works with your existing applications and services without the need to manage, operate, or maintain your own messaging system.
5946
- message AmazonMQ{
5966
+ message AmazonMQ {
5947
5967
  repeated ScanningIssues _scanning_issues = 1;
5948
5968
  google.protobuf.StringValue _a_d_k__name = 2;
5949
5969
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5962,7 +5982,7 @@ message AmazonMQ{
5962
5982
  repeated CDKRule _warnings = 16;
5963
5983
  }
5964
5984
  //Managed Streaming for Apache Kafka (Amazon MSK) is a fully managed service that enables you to build and run applications that use Apache Kafka to process streaming data.
5965
- message AmazonMSKCluster{
5985
+ message AmazonMSKCluster {
5966
5986
  repeated ScanningIssues _scanning_issues = 1;
5967
5987
  google.protobuf.StringValue _a_d_k__name = 2;
5968
5988
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -5985,13 +6005,13 @@ message AmazonMSKCluster{
5985
6005
  repeated StandardObjectDifference _differences = 20;
5986
6006
  repeated CDKRule _warnings = 21;
5987
6007
  }
5988
- message KafkaBrokerNodeInfo{
6008
+ message KafkaBrokerNodeInfo {
5989
6009
  google.protobuf.StringValue _broker_id = 1;
5990
6010
  google.protobuf.StringValue _endpoints = 2;
5991
6011
  google.protobuf.StringValue _client_subnet = 3;
5992
6012
  }
5993
6013
  //Contains details about a root. A root is a top-level parent node in the hierarchy of an organization that can contain organizational units (OUs) and accounts. Every root contains every AWS account in the organization. Each root enables the accounts to be organized in a different way and to have different policy types enabled for use in that root.
5994
- message AmazonOrganizationRoot{
6014
+ message AmazonOrganizationRoot {
5995
6015
  repeated ScanningIssues _scanning_issues = 1;
5996
6016
  google.protobuf.StringValue _a_d_k__name = 2;
5997
6017
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6003,7 +6023,7 @@ message AmazonOrganizationRoot{
6003
6023
  repeated CDKRule _warnings = 9;
6004
6024
  }
6005
6025
  //Contains details about an organizational unit (OU). An OU is a container of AWS accounts within a root of an organization. Policies that are attached to an OU apply to all accounts contained in that OU and in any child OUs.
6006
- message AmazonOrganizationalUnit{
6026
+ message AmazonOrganizationalUnit {
6007
6027
  repeated ScanningIssues _scanning_issues = 1;
6008
6028
  google.protobuf.StringValue _name = 2;
6009
6029
  google.protobuf.StringValue _id = 3;
@@ -6011,7 +6031,7 @@ message AmazonOrganizationalUnit{
6011
6031
  google.protobuf.StringValue _parent_id = 5;
6012
6032
  }
6013
6033
  //An account is a container of multiple resources
6014
- message AmazonAccount{
6034
+ message AmazonAccount {
6015
6035
  repeated ScanningIssues _scanning_issues = 1;
6016
6036
  google.protobuf.StringValue _a_d_k__name = 2;
6017
6037
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6024,7 +6044,7 @@ message AmazonAccount{
6024
6044
  google.protobuf.StringValue _organization_arn = 10;
6025
6045
  }
6026
6046
  //An Organization is a container of multiple accounts
6027
- message AmazonOrganization{
6047
+ message AmazonOrganization {
6028
6048
  repeated ScanningIssues _scanning_issues = 1;
6029
6049
  google.protobuf.StringValue _a_d_k__name = 2;
6030
6050
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6038,7 +6058,7 @@ message AmazonOrganization{
6038
6058
  repeated CDKRule _warnings = 11;
6039
6059
  }
6040
6060
  //A structure that contains information about a backed-up resource.
6041
- message AmazonProtectedResource{
6061
+ message AmazonProtectedResource {
6042
6062
  repeated ScanningIssues _scanning_issues = 1;
6043
6063
  google.protobuf.StringValue _a_d_k__name = 2;
6044
6064
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6050,13 +6070,13 @@ message AmazonProtectedResource{
6050
6070
  repeated StandardObjectDifference _differences = 9;
6051
6071
  repeated CDKRule _warnings = 10;
6052
6072
  }
6053
- message AmazonRecoveryPointByResource{
6073
+ message AmazonRecoveryPointByResource {
6054
6074
  google.protobuf.StringValue _recovery_point_id = 1;
6055
6075
  google.protobuf.StringValue _status = 2;
6056
6076
  google.protobuf.StringValue _creation_date = 3;
6057
6077
  }
6058
6078
  //Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizable capacity for an industry-standard relational database and manages common database administration tasks.
6059
- message AmazonRDSDBInstance{
6079
+ message AmazonRDSDBInstance {
6060
6080
  repeated ScanningIssues _scanning_issues = 1;
6061
6081
  google.protobuf.StringValue _a_d_k__name = 2;
6062
6082
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6103,19 +6123,19 @@ message AmazonRDSDBInstance{
6103
6123
  repeated StandardObjectDifference _differences = 44;
6104
6124
  repeated CDKRule _warnings = 45;
6105
6125
  }
6106
- message AmazonRdsDbParameterGroupStatus{
6126
+ message AmazonRdsDbParameterGroupStatus {
6107
6127
  google.protobuf.StringValue _parameter_group = 1;
6108
6128
  }
6109
- message AmazonRdsSubnet{
6129
+ message AmazonRdsSubnet {
6110
6130
  google.protobuf.StringValue _subnet_a_d_k__g_u_i_d = 1;
6111
6131
  google.protobuf.StringValue _subnet_a_d_k__name = 2;
6112
6132
  }
6113
- message AmazonRdsSecurityGroup{
6133
+ message AmazonRdsSecurityGroup {
6114
6134
  google.protobuf.StringValue _security_group_a_d_k__g_u_i_d = 1;
6115
6135
  google.protobuf.StringValue _security_group_a_d_k__name = 2;
6116
6136
  }
6117
6137
  //Amazon Redshift is a fast, fully managed, petabyte-scale data warehouse service that makes it simple and cost-effective to efficiently analyze all your data using your existing business intelligence tools. It is optimized for datasets ranging from a few hundred gigabytes to a petabyte or more and costs less than $1,000 per terabyte per year, a tenth the cost of most traditional data warehousing solutions.
6118
- message AmazonRedShift{
6138
+ message AmazonRedShift {
6119
6139
  repeated ScanningIssues _scanning_issues = 1;
6120
6140
  google.protobuf.StringValue _a_d_k__name = 2;
6121
6141
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6132,16 +6152,16 @@ message AmazonRedShift{
6132
6152
  google.protobuf.StringValue _port = 14;
6133
6153
  google.protobuf.StringValue _master_username = 15;
6134
6154
  google.protobuf.StringValue _parameter_group_name = 16;
6135
- google.protobuf.StringValue _encryption_state = 17;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6155
+ google.protobuf.StringValue _encryption_state = 17; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6136
6156
  google.protobuf.StringValue _kms_key_id = 18;
6137
6157
  google.protobuf.StringValue _linked_vpc_a_d_k__g_u_i_d = 19;
6138
6158
  google.protobuf.StringValue _linked_vpc_a_d_k__name = 20;
6139
6159
  google.protobuf.StringValue _cluster_subnet_group_name = 21;
6140
6160
  google.protobuf.StringValue _availability_zone = 22;
6141
- google.protobuf.StringValue _enhanced_vpc_routing_state = 23;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6161
+ google.protobuf.StringValue _enhanced_vpc_routing_state = 23; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6142
6162
  google.protobuf.StringValue _linked_security_group_a_d_k__g_u_i_d = 24;
6143
6163
  google.protobuf.StringValue _linked_security_group_a_d_k__name = 25;
6144
- google.protobuf.StringValue _publicly_accessible_state = 26;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6164
+ google.protobuf.StringValue _publicly_accessible_state = 26; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6145
6165
  repeated AmazonIamRole _cluster_iam_roles = 27;
6146
6166
  repeated AmazonPartnerIntegrationInfo _partners = 28;
6147
6167
  repeated AmazonRedShiftClusterNode _cluster_nodes = 29;
@@ -6149,19 +6169,19 @@ message AmazonRedShift{
6149
6169
  repeated StandardObjectDifference _differences = 31;
6150
6170
  repeated CDKRule _warnings = 32;
6151
6171
  }
6152
- message AmazonPartnerIntegrationInfo{
6172
+ message AmazonPartnerIntegrationInfo {
6153
6173
  google.protobuf.StringValue _partner_name = 1;
6154
6174
  google.protobuf.StringValue _status = 2;
6155
6175
  google.protobuf.StringValue _database_name = 3;
6156
6176
  google.protobuf.StringValue _updated_at = 4;
6157
6177
  }
6158
- message AmazonRedShiftClusterNode{
6178
+ message AmazonRedShiftClusterNode {
6159
6179
  google.protobuf.StringValue _node_role = 1;
6160
6180
  google.protobuf.StringValue _public_i_p_address = 2;
6161
6181
  google.protobuf.StringValue _private_i_p_address = 3;
6162
6182
  }
6163
6183
  //Contains metadata about a restore job.
6164
- message AmazonRestoreJob{
6184
+ message AmazonRestoreJob {
6165
6185
  repeated ScanningIssues _scanning_issues = 1;
6166
6186
  google.protobuf.StringValue _a_d_k__name = 2;
6167
6187
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6176,7 +6196,7 @@ message AmazonRestoreJob{
6176
6196
  repeated CDKRule _warnings = 12;
6177
6197
  }
6178
6198
  //Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.
6179
- message AmazonRoute53{
6199
+ message AmazonRoute53 {
6180
6200
  repeated ScanningIssues _scanning_issues = 1;
6181
6201
  google.protobuf.StringValue _a_d_k__name = 2;
6182
6202
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6189,7 +6209,7 @@ message AmazonRoute53{
6189
6209
  repeated StandardObjectDifference _differences = 10;
6190
6210
  repeated CDKRule _warnings = 11;
6191
6211
  }
6192
- message Route53RecordSet{
6212
+ message Route53RecordSet {
6193
6213
  google.protobuf.StringValue _name = 1;
6194
6214
  google.protobuf.StringValue _type = 2;
6195
6215
  google.protobuf.StringValue _value = 3;
@@ -6202,7 +6222,7 @@ message Route53RecordSet{
6202
6222
  google.protobuf.StringValue _set_identifier = 10;
6203
6223
  }
6204
6224
  //Amazon Simple Storage Service (Amazon S3) is storage for the internet. You can use Amazon S3 to store and retrieve any amount of data at any time, from anywhere on the web. You can accomplish these tasks using the simple and intuitive web interface of the AWS Management Console.
6205
- message AmazonS3Bucket{
6225
+ message AmazonS3Bucket {
6206
6226
  repeated ScanningIssues _scanning_issues = 1;
6207
6227
  google.protobuf.StringValue _a_d_k__name = 2;
6208
6228
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6235,7 +6255,7 @@ message AmazonS3Bucket{
6235
6255
  repeated CDKRule _warnings = 30;
6236
6256
  }
6237
6257
  //Represents an S3 Object. Contains all attributes that an S3 Object has.
6238
- message AmazonS3Object{
6258
+ message AmazonS3Object {
6239
6259
  repeated ScanningIssues _scanning_issues = 1;
6240
6260
  google.protobuf.StringValue _key = 2;
6241
6261
  google.protobuf.StringValue _displayed_size = 3;
@@ -6244,20 +6264,20 @@ message AmazonS3Object{
6244
6264
  google.protobuf.StringValue _owner_display_name = 6;
6245
6265
  }
6246
6266
  //AWS Secrets Manager helps you to securely encrypt, store, and retrieve credentials for your databases and other services. Instead of hardcoding credentials in your apps, you can make calls to Secrets Manager to retrieve your credentials whenever needed. Secrets Manager helps you protect access to your IT resources and data by enabling you to rotate and manage access to your secrets.
6247
- message AmazonSecretsManager{
6267
+ message AmazonSecretsManager {
6248
6268
  repeated ScanningIssues _scanning_issues = 1;
6249
6269
  google.protobuf.StringValue _a_d_k__name = 2;
6250
6270
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
6251
6271
  google.protobuf.StringValue _description = 4;
6252
6272
  google.protobuf.StringValue _a_r_n = 5;
6253
- google.protobuf.StringValue _rotation_status_text = 6;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6273
+ google.protobuf.StringValue _rotation_status_text = 6; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6254
6274
  google.protobuf.Int64Value _rotation_interval = 7;
6255
6275
  repeated CloudockitTag _tags = 8;
6256
6276
  repeated StandardObjectDifference _differences = 9;
6257
6277
  repeated CDKRule _warnings = 10;
6258
6278
  }
6259
6279
  //Amazon Simple Email Service (Amazon SES) is an email sending and receiving service that provides an easy, cost-effective way for you to send email.
6260
- message AmazonSesIdentity{
6280
+ message AmazonSesIdentity {
6261
6281
  repeated ScanningIssues _scanning_issues = 1;
6262
6282
  google.protobuf.StringValue _a_d_k__name = 2;
6263
6283
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6268,7 +6288,7 @@ message AmazonSesIdentity{
6268
6288
  repeated CDKRule _warnings = 8;
6269
6289
  }
6270
6290
  //The domain identities for your AWS account in the current AWS Region, regardless of verification status.
6271
- message AmazonSesDomainIdentity{
6291
+ message AmazonSesDomainIdentity {
6272
6292
  repeated ScanningIssues _scanning_issues = 1;
6273
6293
  google.protobuf.StringValue _domain_name = 2;
6274
6294
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6283,17 +6303,17 @@ message AmazonSesDomainIdentity{
6283
6303
  repeated AmazonSesIdentityDkim _ses_identity_dkim_attributes = 12;
6284
6304
  repeated AmazonSesIdentityPolicy _ses_identity_policies = 13;
6285
6305
  }
6286
- message AmazonSesIdentityDkim{
6306
+ message AmazonSesIdentityDkim {
6287
6307
  google.protobuf.StringValue _name = 1;
6288
6308
  google.protobuf.StringValue _attribute_type = 2;
6289
6309
  google.protobuf.StringValue _attribute_value = 3;
6290
6310
  }
6291
- message AmazonSesIdentityPolicy{
6311
+ message AmazonSesIdentityPolicy {
6292
6312
  google.protobuf.StringValue _name = 1;
6293
6313
  google.protobuf.StringValue _policy_action__a_d_k_j_s_o_n = 2;
6294
6314
  }
6295
6315
  //The Email identities for your AWS account in the current AWS Region, regardless of verification status.
6296
- message AmazonSesEmailIdentity{
6316
+ message AmazonSesEmailIdentity {
6297
6317
  repeated ScanningIssues _scanning_issues = 1;
6298
6318
  google.protobuf.StringValue _email_address = 2;
6299
6319
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6306,7 +6326,7 @@ message AmazonSesEmailIdentity{
6306
6326
  repeated AmazonSesIdentityPolicy _ses_identity_policies = 10;
6307
6327
  }
6308
6328
  //Amazon Simple Notification Service (Amazon SNS) is a web service that enables applications, end-users, and devices to instantly send and receive notifications from the cloud.
6309
- message AmazonSNS{
6329
+ message AmazonSNS {
6310
6330
  repeated ScanningIssues _scanning_issues = 1;
6311
6331
  google.protobuf.StringValue _a_d_k__name = 2;
6312
6332
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6317,14 +6337,14 @@ message AmazonSNS{
6317
6337
  repeated StandardObjectDifference _differences = 8;
6318
6338
  repeated CDKRule _warnings = 9;
6319
6339
  }
6320
- message AmazonSNSSubscription{
6340
+ message AmazonSNSSubscription {
6321
6341
  google.protobuf.StringValue _subscription_arn = 1;
6322
6342
  google.protobuf.StringValue _protocol = 2;
6323
6343
  google.protobuf.StringValue _endpoint = 3;
6324
6344
  google.protobuf.StringValue _owner = 4;
6325
6345
  }
6326
6346
  //Amazon Simple Queue Service (Amazon SQS) is a fully managed message queuing service that makes it easy to decouple and scale microservices, distributed systems, and serverless applications. Amazon SQS moves data between distributed application components and helps you decouple these components.
6327
- message AmazonSQS{
6347
+ message AmazonSQS {
6328
6348
  repeated ScanningIssues _scanning_issues = 1;
6329
6349
  google.protobuf.StringValue _a_d_k__name = 2;
6330
6350
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6341,7 +6361,7 @@ message AmazonSQS{
6341
6361
  repeated CDKRule _warnings = 14;
6342
6362
  }
6343
6363
  //AWS CloudFormation enables you to create and provision AWS infrastructure deployments predictably and repeatedly. AWS CloudFormation enables you to use a template file to create and delete a collection of resources together as a single unit (a stack).
6344
- message AmazonStack{
6364
+ message AmazonStack {
6345
6365
  repeated ScanningIssues _scanning_issues = 1;
6346
6366
  google.protobuf.StringValue _a_d_k__name = 2;
6347
6367
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6367,32 +6387,32 @@ message AmazonStack{
6367
6387
  repeated StandardObjectDifference _differences = 23;
6368
6388
  repeated CDKRule _warnings = 24;
6369
6389
  }
6370
- message AmazonStackResourceSummary{
6390
+ message AmazonStackResourceSummary {
6371
6391
  google.protobuf.StringValue _logical_resource_id = 1;
6372
6392
  google.protobuf.StringValue _physical_resource_id = 2;
6373
6393
  google.protobuf.StringValue _resource_type = 3;
6374
6394
  google.protobuf.StringValue _resource_status = 4;
6375
6395
  google.protobuf.StringValue _resource_status_reason = 5;
6376
6396
  }
6377
- message AmazonStackOutput{
6397
+ message AmazonStackOutput {
6378
6398
  google.protobuf.StringValue _output_key = 1;
6379
6399
  google.protobuf.StringValue _output_value = 2;
6380
6400
  google.protobuf.StringValue _description = 3;
6381
6401
  google.protobuf.StringValue _export_name = 4;
6382
6402
  }
6383
- message AmazonStackParameter{
6403
+ message AmazonStackParameter {
6384
6404
  google.protobuf.StringValue _parameter_key = 1;
6385
6405
  google.protobuf.StringValue _parameter_value = 2;
6386
6406
  google.protobuf.StringValue _resolved_value = 3;
6387
6407
  }
6388
- message AmazonStackChangeSetSummary{
6408
+ message AmazonStackChangeSetSummary {
6389
6409
  google.protobuf.StringValue _change_set_name = 1;
6390
6410
  google.protobuf.StringValue _creation_time = 2;
6391
6411
  google.protobuf.StringValue _status = 3;
6392
6412
  google.protobuf.StringValue _description = 4;
6393
6413
  }
6394
6414
  //AWS Step Functions makes it easy to coordinate the components of distributed applications as a series of steps in a visual workflow. You can quickly build and run state machines to execute the steps of your application in a reliable and scalable fashion.
6395
- message AmazonStepFunctions{
6415
+ message AmazonStepFunctions {
6396
6416
  repeated ScanningIssues _scanning_issues = 1;
6397
6417
  google.protobuf.StringValue _a_d_k__name = 2;
6398
6418
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6407,7 +6427,7 @@ message AmazonStepFunctions{
6407
6427
  repeated CDKRule _warnings = 12;
6408
6428
  }
6409
6429
  //Contains general information about a domain.
6410
- message AmazonSwfDomainInfo{
6430
+ message AmazonSwfDomainInfo {
6411
6431
  repeated ScanningIssues _scanning_issues = 1;
6412
6432
  google.protobuf.StringValue _a_d_k__name = 2;
6413
6433
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6426,7 +6446,7 @@ message AmazonSwfDomainInfo{
6426
6446
  repeated CDKRule _warnings = 16;
6427
6447
  }
6428
6448
  //Contains information about a workflow execution.
6429
- message AmazonSwfWorkflowExecutionInfo{
6449
+ message AmazonSwfWorkflowExecutionInfo {
6430
6450
  repeated ScanningIssues _scanning_issues = 1;
6431
6451
  google.protobuf.StringValue _a_d_k__name = 2;
6432
6452
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6453,7 +6473,7 @@ message AmazonSwfWorkflowExecutionInfo{
6453
6473
  google.protobuf.StringValue _parent_workflow_id = 24;
6454
6474
  }
6455
6475
  //Contains information about a workflow type.
6456
- message AmazonSwfWorkflowTypeInfo{
6476
+ message AmazonSwfWorkflowTypeInfo {
6457
6477
  repeated ScanningIssues _scanning_issues = 1;
6458
6478
  google.protobuf.StringValue _a_d_k__name = 2;
6459
6479
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6469,7 +6489,7 @@ message AmazonSwfWorkflowTypeInfo{
6469
6489
  google.protobuf.StringValue _configuration_default_lambda_role = 13;
6470
6490
  }
6471
6491
  //Detailed information about an activity type.
6472
- message AmazonSwfActivityTypeInfo{
6492
+ message AmazonSwfActivityTypeInfo {
6473
6493
  repeated ScanningIssues _scanning_issues = 1;
6474
6494
  google.protobuf.StringValue _a_d_k__name = 2;
6475
6495
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6485,7 +6505,7 @@ message AmazonSwfActivityTypeInfo{
6485
6505
  google.protobuf.StringValue _configuration_default_task_priority = 13;
6486
6506
  }
6487
6507
  //A managed instance is any machine configured for AWS Systems Manager. You can configure EC2 instances or on-premises machines in a hybrid environment as managed instances. Systems Manager supports various distributions of Linux, including Raspberry Pi devices, and Microsoft Windows Server.
6488
- message AmazonSystemsManagerManagedInstance{
6508
+ message AmazonSystemsManagerManagedInstance {
6489
6509
  repeated ScanningIssues _scanning_issues = 1;
6490
6510
  google.protobuf.StringValue _a_d_k__name = 2;
6491
6511
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6502,7 +6522,7 @@ message AmazonSystemsManagerManagedInstance{
6502
6522
  repeated CDKRule _warnings = 14;
6503
6523
  }
6504
6524
  //A transit gateway is a network transit hub that you can use to interconnect your virtual private clouds (VPC) and on-premises networks.
6505
- message AmazonTransitGateway{
6525
+ message AmazonTransitGateway {
6506
6526
  repeated ScanningIssues _scanning_issues = 1;
6507
6527
  google.protobuf.StringValue _a_d_k__name = 2;
6508
6528
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6525,7 +6545,7 @@ message AmazonTransitGateway{
6525
6545
  repeated CDKRule _warnings = 20;
6526
6546
  }
6527
6547
  //When you attach a VPC to a transit gateway, you must specify one subnet from each Availability Zone to be used by the transit gateway to route traffic. Specifying one subnet from an Availability Zone enables traffic to reach resources in every subnet in that Availability Zone.
6528
- message AmazonTransitGatewayVpcAttachment{
6548
+ message AmazonTransitGatewayVpcAttachment {
6529
6549
  repeated ScanningIssues _scanning_issues = 1;
6530
6550
  google.protobuf.StringValue _a_d_k__name = 2;
6531
6551
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6543,7 +6563,7 @@ message AmazonTransitGatewayVpcAttachment{
6543
6563
  google.protobuf.StringValue _options_ipv6_support = 15;
6544
6564
  }
6545
6565
  //To attach a VPN connection to your transit gateway, you must specify the customer gateway. For static VPNs, add the static routes to the transit gateway route table.
6546
- message AmazonTransitGatewayVpnAttachment{
6566
+ message AmazonTransitGatewayVpnAttachment {
6547
6567
  repeated ScanningIssues _scanning_issues = 1;
6548
6568
  google.protobuf.StringValue _a_d_k__name = 2;
6549
6569
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6558,7 +6578,7 @@ message AmazonTransitGatewayVpnAttachment{
6558
6578
  google.protobuf.StringValue _association_transit_gateway_route_table_id = 12;
6559
6579
  }
6560
6580
  //Use transit gateway route tables to configure routing for your transit gateway attachments.
6561
- message AmazonTransitGatewayRouteTable{
6581
+ message AmazonTransitGatewayRouteTable {
6562
6582
  repeated ScanningIssues _scanning_issues = 1;
6563
6583
  google.protobuf.StringValue _a_d_k__name = 2;
6564
6584
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6571,19 +6591,19 @@ message AmazonTransitGatewayRouteTable{
6571
6591
  repeated AmazonTransitGatewayRouteTablePropagation _propagations = 10;
6572
6592
  repeated AmazonTransitGatewayRouteDto _transit_gateway_routes = 11;
6573
6593
  }
6574
- message AmazonTransitGatewayRouteTableAssociation{
6594
+ message AmazonTransitGatewayRouteTableAssociation {
6575
6595
  google.protobuf.StringValue _transit_gateway_attachment_id = 1;
6576
6596
  google.protobuf.StringValue _resource_type = 2;
6577
6597
  google.protobuf.StringValue _resource_id = 3;
6578
6598
  google.protobuf.StringValue _state = 4;
6579
6599
  }
6580
- message AmazonTransitGatewayRouteTablePropagation{
6600
+ message AmazonTransitGatewayRouteTablePropagation {
6581
6601
  google.protobuf.StringValue _transit_gateway_attachment_id = 1;
6582
6602
  google.protobuf.StringValue _resource_type = 2;
6583
6603
  google.protobuf.StringValue _resource_id = 3;
6584
6604
  google.protobuf.StringValue _state = 4;
6585
6605
  }
6586
- message AmazonTransitGatewayRouteDto{
6606
+ message AmazonTransitGatewayRouteDto {
6587
6607
  google.protobuf.StringValue _destination_cidr_block = 1;
6588
6608
  google.protobuf.StringValue _attachments = 2;
6589
6609
  google.protobuf.StringValue _resource_type = 3;
@@ -6591,7 +6611,7 @@ message AmazonTransitGatewayRouteDto{
6591
6611
  google.protobuf.StringValue _state = 5;
6592
6612
  }
6593
6613
  //Amazon Virtual Private Cloud (Amazon VPC) enables you to launch Amazon Web Services (AWS) resources into a virtual network that you've defined. This virtual network closely resembles a traditional network that you'd operate in your own data center, with the benefits of using the scalable infrastructure of AWS.
6594
- message AmazonVPC{
6614
+ message AmazonVPC {
6595
6615
  repeated ScanningIssues _scanning_issues = 1;
6596
6616
  google.protobuf.StringValue _a_d_k__name = 2;
6597
6617
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6603,7 +6623,7 @@ message AmazonVPC{
6603
6623
  google.protobuf.StringValue _main_route_table_name = 9;
6604
6624
  google.protobuf.StringValue _main_network_acl_name = 10;
6605
6625
  google.protobuf.StringValue _instance_tenancy = 11;
6606
- google.protobuf.StringValue _default_vpc = 12;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6626
+ google.protobuf.StringValue _default_vpc = 12; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6607
6627
  repeated AmazonSubnet _subnets = 13;
6608
6628
  repeated AmazonRouteTable _route_tables = 14;
6609
6629
  repeated AmazonNetworkAcl _amazon_network_acls = 15;
@@ -6613,7 +6633,7 @@ message AmazonVPC{
6613
6633
  repeated CDKRule _warnings = 19;
6614
6634
  }
6615
6635
  //Each subnet must be associated with a route table, which specifies the allowed routes for outbound traffic leaving the subnet.Every subnet that you create is automatically associated with the main route table for the VPC.
6616
- message AmazonSubnet{
6636
+ message AmazonSubnet {
6617
6637
  repeated ScanningIssues _scanning_issues = 1;
6618
6638
  google.protobuf.StringValue _subnet_id = 2;
6619
6639
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6636,48 +6656,48 @@ message AmazonSubnet{
6636
6656
  repeated CloudockitTag _tags = 20;
6637
6657
  }
6638
6658
  //A route table contains a set of rules, called routes, that are used to determine where network traffic is directed.
6639
- message AmazonRouteTable{
6659
+ message AmazonRouteTable {
6640
6660
  repeated ScanningIssues _scanning_issues = 1;
6641
6661
  google.protobuf.StringValue _a_d_k__name = 2;
6642
6662
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
6643
6663
  google.protobuf.StringValue _resource_tag_name = 4;
6644
6664
  google.protobuf.StringValue _associated_subnet_count = 5;
6645
- google.protobuf.StringValue _is_main = 6;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6665
+ google.protobuf.StringValue _is_main = 6; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6646
6666
  repeated AmazonRoute _amazon_routes = 7;
6647
6667
  repeated AmazonSubnet _explicit_subnet_associations = 8;
6648
6668
  repeated AmazonSubnet _amazon_subnets = 9;
6649
6669
  repeated AmazonPropagatingVgw _amazon_propagating_vgws = 10;
6650
6670
  repeated CloudockitTag _tags = 11;
6651
6671
  }
6652
- message AmazonRoute{
6672
+ message AmazonRoute {
6653
6673
  google.protobuf.StringValue _destination_display = 1;
6654
6674
  google.protobuf.StringValue _gateway_id = 2;
6655
6675
  google.protobuf.StringValue _state = 3;
6656
6676
  }
6657
- message AmazonPropagatingVgw{
6677
+ message AmazonPropagatingVgw {
6658
6678
  google.protobuf.StringValue _gateway_id = 1;
6659
6679
  }
6660
- //A network access control list (ACL) is an optional layer of security for your VPC that acts as a firewall for controlling traffic in and out of one or more subnets.
6661
- message AmazonNetworkAcl{
6680
+ //A network access control list (ACL) is an optional layer of security for your VPC that acts as a firewall for controlling traffic in and out of one or more subnets.
6681
+ message AmazonNetworkAcl {
6662
6682
  repeated ScanningIssues _scanning_issues = 1;
6663
6683
  google.protobuf.StringValue _a_d_k__name = 2;
6664
6684
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
6665
6685
  google.protobuf.StringValue _resource_tag_name = 4;
6666
6686
  google.protobuf.StringValue _associated_subnet_count_label = 5;
6667
- google.protobuf.StringValue _default_network_acl = 6;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6687
+ google.protobuf.StringValue _default_network_acl = 6; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6668
6688
  repeated AmazonNetworkAclInboundRule _inbound_rules = 7;
6669
6689
  repeated AmazonNetworkAclOutboundRule _outbound_rules = 8;
6670
6690
  repeated AmazonSubnet _amazon_subnets = 9;
6671
6691
  repeated CloudockitTag _tags = 10;
6672
6692
  }
6673
- message AmazonNetworkAclInboundRule{
6693
+ message AmazonNetworkAclInboundRule {
6674
6694
  google.protobuf.StringValue _rule_number = 1;
6675
6695
  google.protobuf.StringValue _protocol_display = 2;
6676
6696
  google.protobuf.StringValue _port_display = 3;
6677
6697
  google.protobuf.StringValue _source = 4;
6678
6698
  google.protobuf.StringValue _rule_action = 5;
6679
6699
  }
6680
- message AmazonNetworkAclOutboundRule{
6700
+ message AmazonNetworkAclOutboundRule {
6681
6701
  google.protobuf.StringValue _rule_number = 1;
6682
6702
  google.protobuf.StringValue _protocol_display = 2;
6683
6703
  google.protobuf.StringValue _port_display = 3;
@@ -6685,7 +6705,7 @@ message AmazonNetworkAclOutboundRule{
6685
6705
  google.protobuf.StringValue _rule_action = 5;
6686
6706
  }
6687
6707
  //By default, instances that you launch into an Amazon VPC can't communicate with your own (remote) network. You can enable access to your remote network from your VPC by attaching a virtual private gateway to the VPC, creating a custom route table, updating your security group rules, creating an AWS Site-to-Site VPN (Site-to-Site VPN) connection, and configuring routing to pass traffic through the connection.
6688
- message AmazonVpnConnection{
6708
+ message AmazonVpnConnection {
6689
6709
  repeated ScanningIssues _scanning_issues = 1;
6690
6710
  google.protobuf.StringValue _a_d_k__name = 2;
6691
6711
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6704,7 +6724,7 @@ message AmazonVpnConnection{
6704
6724
  repeated CDKRule _warnings = 16;
6705
6725
  }
6706
6726
  //AWS Virtual Private Network (AWS VPN) lets you establish a secure and private tunnel from your network or device to the AWS Cloud. You can extend your existing on-premises network into a VPC, or connect to other AWS resources from a client. AWS VPN offers two types of private connectivity that feature the high availability and robust security necessary for your data.
6707
- message AmazonVpnGateway{
6727
+ message AmazonVpnGateway {
6708
6728
  repeated ScanningIssues _scanning_issues = 1;
6709
6729
  google.protobuf.StringValue _a_d_k__name = 2;
6710
6730
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6718,7 +6738,7 @@ message AmazonVpnGateway{
6718
6738
  repeated CDKRule _warnings = 11;
6719
6739
  }
6720
6740
  //WorkSpaces is a fully managed cloud desktop solution. Provision Linux and Windows virtual desktops in just a few minutes and deliver them securely to thousands of users.
6721
- message AmazonWorkspace{
6741
+ message AmazonWorkspace {
6722
6742
  repeated ScanningIssues _scanning_issues = 1;
6723
6743
  google.protobuf.StringValue _a_d_k__name = 2;
6724
6744
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
@@ -6745,21 +6765,21 @@ message AmazonWorkspace{
6745
6765
  repeated CDKRule _warnings = 24;
6746
6766
  }
6747
6767
  //WorkSpaces uses a directory to store and manage information for your WorkSpaces and users.
6748
- message AmazonWorkspaceDirectory{
6768
+ message AmazonWorkspaceDirectory {
6749
6769
  repeated ScanningIssues _scanning_issues = 1;
6750
6770
  google.protobuf.StringValue _a_d_k__name = 2;
6751
6771
  google.protobuf.StringValue _a_d_k__g_u_i_d = 3;
6752
6772
  google.protobuf.StringValue _directory_id = 4;
6753
6773
  google.protobuf.StringValue _status = 5;
6754
- google.protobuf.StringValue _registered = 6;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6774
+ google.protobuf.StringValue _registered = 6; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6755
6775
  google.protobuf.StringValue _alias = 7;
6756
6776
  google.protobuf.StringValue _directory_type = 8;
6757
6777
  google.protobuf.StringValue _registration_code = 9;
6758
6778
  google.protobuf.Int64Value _status_last_updated = 10;
6759
- google.protobuf.StringValue _amazon_workspace_creation_properties_work_docs = 11;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6760
- google.protobuf.StringValue _amazon_workspace_creation_properties_access_to_internet = 12;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6761
- google.protobuf.StringValue _amazon_workspace_creation_properties_local_administrator_state = 13;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6762
- google.protobuf.StringValue _amazon_workspace_access_properties_web_access = 14;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6779
+ google.protobuf.StringValue _amazon_workspace_creation_properties_work_docs = 11; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6780
+ google.protobuf.StringValue _amazon_workspace_creation_properties_access_to_internet = 12; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6781
+ google.protobuf.StringValue _amazon_workspace_creation_properties_local_administrator_state = 13; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6782
+ google.protobuf.StringValue _amazon_workspace_access_properties_web_access = 14; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6763
6783
  google.protobuf.Int64Value _launch_time = 15;
6764
6784
  google.protobuf.StringValue _dns_address = 16;
6765
6785
  google.protobuf.StringValue _v_p_c_a_d_k__g_u_i_d = 17;
@@ -6769,5 +6789,5 @@ message AmazonWorkspaceDirectory{
6769
6789
  google.protobuf.StringValue _radius_status = 21;
6770
6790
  google.protobuf.StringValue _amazon_workspace_creation_properties_default_ou = 22;
6771
6791
  google.protobuf.StringValue _workspace_security_group_id = 23;
6772
- google.protobuf.StringValue _amazon_workspace_creation_properties_maintenance_mode_state = 24;//. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6792
+ google.protobuf.StringValue _amazon_workspace_creation_properties_maintenance_mode_state = 24; //. Possible Values are : None,On,Off,Active,Inactive,Yes,No,True,False,Enabled,Disabled
6773
6793
  }